POST GRADUATE PROGRAM IN DATA SCIENCE AND ENGINEERING JANUARY 2023 - ONLINE¶

Domain : Predictive Analytics in the field of Transportation/ Urban Mobility¶

GROUP 8 : Analysis on Yellow Taxis and Congessions in the Newyork City¶

Presented by:

  • Keren Melinda V</br>
  • Lakshmi Priya</br>
  • Liviya Sekar</br>
  • Ritartha Chakraborty</br>
  • Sriram S</br>

Led by Sriram S</br> Mentored by Mohit Sahu</br>

Problem Statement</br>

One of the major issues faced by the population of New York is the traffic congestion in the city during the rush hours which in week days falls between 07-10 hrs and 16-20hrs. The rush hours in weekends will vary based on major events happening in the city such concerts, major sporting events etc. As per the tom tom traffic index, due to the congestion average ride hour exceeds by approx. 12-17 minutes. This is a major problem which needs attention and right intervention.

Data Collection</br> The data is extracted from the Newyork Taxi & Limousine Commission website - https://www.nyc.gov/site/tlc/index.page. The data contains 32,88,250 rows and 19 columns including vendorID, ratecodeID, payment type, passenger count, pickup datetime, dropoff datetime, and fare details etc., which were collected for the month of April 2023. The additional data which consists of borough, zone and service zone details of new york city.

Data Description</br> VendorID</b> - A code indicating the TPEP provider that provided the record. (1= Creative Mobile Technologies, LLC; 2= VeriFone Inc.)</br> tpep_pickup_datetime</b> - The date and time when the meter was engaged.</br> tpep_dropoff_datetime</b> - The date and time when the meter was disengaged.</br> Passenger_count</b> - The number of passengers in the vehicle. This is a driver-entered value.</br> Trip_distance</b> - The elapsed trip distance in miles reported by the taximeter.</br> PULocationID</b> - TLC Taxi Zone in which the taximeter was engaged.</br> DOLocationID</b> - TLC Taxi Zone in which the taximeter was disengaged.</br> RateCodeID</b> - The final rate code in effect at the end of the trip. (1= Standard rate, 2=JFK, 3=Newark, 4=Nassau or Westchester, 5=Negotiated fare, 6=Group ride)</br> Store_and_fwd_flag</b> - This flag indicates whether the trip record was held in vehicle memory before sending to the vendor, aka “store and forward,” because the vehicle did not have a connection to the server.(Y= store and forward trip, N= not a store and forward trip)</br> Payment_type</b> - A numeric code signifying how the passenger paid for the trip. (1= Credit card, 2= Cash, 3= No charge, 4= Dispute, 5= Unknown, 6= Voided trip)</br> Fare_amount</b> - The time-and-distance fare calculated by the meter.</br> Extra</b> - Miscellaneous extras and surcharges. Currently, this only includes the $0.50 and $1 rush hour and vernight charges.</br> MTA_tax</b> - \$0.50 MTA tax that is automatically triggered based on the metered rate in use. </br> <i><b>Improvement_surcharge</i></b> - \\$0.30 improvement surcharge assessed trips at the flag drop. The improvement surcharge began being levied in 2015.</br> Tip_amount</b> - This field is automatically populated for credit card tips. Cash tips are not included.</br> Tolls_amount</b> - Total amount of all tolls paid in trip.</br> Total_amount</b> - The total amount charged to passengers. Does not include cash tips.</br> Congestion_Surcharge</b> - Total amount collected in trip for NYS congestion surcharge. </br> Airport_fee</b> - $1.25 for pick up only at LaGuardia and John F. Kennedy Airports.</br>

Data Exploration

In [2]:
# import necessary libraries
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
import seaborn as sns

import warnings
warnings.filterwarnings('ignore')

pd.options.display.max_columns = None

from scipy import stats

Importing the raw data

In [3]:
# importing parquet file of APR 2023 yellow taxi dataset
# Since raw data is in parquet format installing pyarrow for data conversion and high efficiency

# !{sys.executable} -m pip install pyarrow 
#parquet_file = 'yellow_tripdata_2023-04.parquet'
#df = pd.read_parquet(parquet_file) # reading the parquet file

# Specify the output CSV file name
#csv_output = 'yellow_taxi_cab.csv'

# Save the DataFrame to the CSV file using tab as the separator and excluding the index column
#df.to_csv(csv_output, index=False, sep='\t')

#df.head() #  display the firt five rows
In [5]:
# Reading the Raw dataset
df = pd.read_csv('yellow_taxi_cab.csv', sep='\t')

Importing additional data to support the analysis

In [6]:
# to merge lookup location ids
locations= pd.read_csv('taxi+_zone_lookup.csv') # importing additional data

df = df.merge(locations,how='left',left_on='PULocationID',right_on='LocationID')
df = df.rename(columns={'Borough':'PU_Borough','Zone':'PU_Zone','service_zone':'PU_service_zone'})
df.drop(columns='LocationID',inplace = True)
df = df.merge(locations,how='left',left_on='DOLocationID',right_on='LocationID')
df = df.rename(columns={'Borough':'DO_Borough','Zone':'DO_Zone','service_zone':'DO_service_zone'})
df.drop(columns='LocationID',inplace = True)
In [7]:
# shape of raw data
df.shape
Out[7]:
(3288250, 25)

The dataset contains 32,88,250 rows and 25 columns.

In [10]:
# checking for missing/null values
count = df.isna().sum() 
percent = count/len(df)*100

missing_df = pd.concat((count, percent), axis = 1, keys = ['count', 'percent'])

missing_df
Out[10]:
count percent
VendorID 0 0.000000
tpep_pickup_datetime 0 0.000000
tpep_dropoff_datetime 0 0.000000
passenger_count 90690 2.758002
trip_distance 0 0.000000
RatecodeID 90690 2.758002
store_and_fwd_flag 90690 2.758002
PULocationID 0 0.000000
DOLocationID 0 0.000000
payment_type 0 0.000000
fare_amount 0 0.000000
extra 0 0.000000
mta_tax 0 0.000000
tip_amount 0 0.000000
tolls_amount 0 0.000000
improvement_surcharge 0 0.000000
total_amount 0 0.000000
congestion_surcharge 90690 2.758002
Airport_fee 90690 2.758002
PU_Borough 0 0.000000
PU_Zone 2160 0.065688
PU_service_zone 36145 1.099217
DO_Borough 0 0.000000
DO_Zone 13082 0.397841
DO_service_zone 51612 1.569589
In [12]:
# checking datatype of the columns
df.dtypes
Out[12]:
VendorID                   int64
tpep_pickup_datetime      object
tpep_dropoff_datetime     object
passenger_count          float64
trip_distance            float64
RatecodeID               float64
store_and_fwd_flag        object
PULocationID               int64
DOLocationID               int64
payment_type               int64
fare_amount              float64
extra                    float64
mta_tax                  float64
tip_amount               float64
tolls_amount             float64
improvement_surcharge    float64
total_amount             float64
congestion_surcharge     float64
Airport_fee              float64
PU_Borough                object
PU_Zone                   object
PU_service_zone           object
DO_Borough                object
DO_Zone                   object
DO_service_zone           object
dtype: object

Data Cleaning

Dropping missing values

In [16]:
# DROPPING THE NULL VALUES
df = df.dropna()
In [17]:
# df shape after removing null values
df.shape
Out[17]:
(3143655, 25)

1,44,595 rows which contained null values were removed from the dataframe.

Datatype Conversion

In [13]:
# date time dtype conversion
df['tpep_pickup_datetime'] = pd.to_datetime(df['tpep_pickup_datetime'])
df['tpep_dropoff_datetime'] = pd.to_datetime(df['tpep_dropoff_datetime'])
In [18]:
# Dtype conversion
df['VendorID']=df['VendorID'].astype(object)
df['passenger_count']=df['passenger_count'].astype(int)
df['RatecodeID']=df['RatecodeID'].astype(object)
df['payment_type']=df['payment_type'].astype(object)
In [19]:
# checking datatype of the columns after dtype conversion
df.dtypes
Out[19]:
VendorID                         object
tpep_pickup_datetime     datetime64[ns]
tpep_dropoff_datetime    datetime64[ns]
passenger_count                   int32
trip_distance                   float64
RatecodeID                       object
store_and_fwd_flag               object
PULocationID                      int64
DOLocationID                      int64
payment_type                     object
fare_amount                     float64
extra                           float64
mta_tax                         float64
tip_amount                      float64
tolls_amount                    float64
improvement_surcharge           float64
total_amount                    float64
congestion_surcharge            float64
Airport_fee                     float64
PU_Borough                       object
PU_Zone                          object
PU_service_zone                  object
DO_Borough                       object
DO_Zone                          object
DO_service_zone                  object
dtype: object

Data Filtration</br> Filter the data corresponding to weekday rush hours.

In [20]:
# Filtering the first fortnight
df = df[(df['tpep_pickup_datetime'].dt.day <= 14) & (df['tpep_dropoff_datetime'].dt.day <= 14)]
In [21]:
# Filtering only the rush hours 
df= df[df['tpep_pickup_datetime'].dt.hour.between(7,9) | df['tpep_pickup_datetime'].dt.hour.between(16,19)]
In [22]:
# Removing the weekends from dataframe
dates= [1,2,8,9,15,16]
df= (df[(~df['tpep_pickup_datetime'].dt.day.isin(dates))  & (~df['tpep_dropoff_datetime'].dt.day.isin(dates))])
In [23]:
# Removing the May month rows
df = df[(df['tpep_pickup_datetime'].dt.month == 4) & (df['tpep_dropoff_datetime'].dt.month == 4)]
In [24]:
# shape after data filtration
df.shape
Out[24]:
(404642, 25)

Feature Extraction</br> Creating seven new features such as trip_duration_secs, pickup_date, dropoff_date, pickup_hour, drop_hour, pickup_day, dropoff_day.

In [25]:
# extracting trip duration in seconds
df['trip_duration_secs'] = (df['tpep_dropoff_datetime'] - df['tpep_pickup_datetime']).dt.total_seconds()

# extracting pickup date
df['pickup_date'] = df['tpep_pickup_datetime'].dt.date  

# extracting dropoff date
df['dropoff_date'] = df['tpep_dropoff_datetime'].dt.date  

# extracting pickup hour
df['pickup_hour']=df['tpep_pickup_datetime'].dt.hour 

# extracting drop off hour
df['drop_hour']=df['tpep_dropoff_datetime'].dt.hour  

# extracting pickup day
df['pickup_day']=df['tpep_pickup_datetime'].dt.day_name() 

# extracting drop off day
df['dropoff_day']=df['tpep_dropoff_datetime'].dt.day_name() 

Data Preprocessing

In [45]:
# dropping 63 rows which has 0 total amount
df = df[df['total_amount'] != 0] 

# dropping 3361 rows which has negative total amount
df = df[df['total_amount'] > 0] 

# dropping 7593 rows which has 0 passenger count
df = df[df['passenger_count'] != 0] 

# dropping 2731 rows which has incorrect ratecodeID (99)
df = df[df['RatecodeID'] != 99] 

# dropping 3893 rows which has 0 trip distance
df = df[df['trip_distance'] != 0] 

# dropping 3501 rows which has fare amount less than 3
df = df[df['fare_amount'] >= 3] 

# dropping 238 rows which has 0 improvement surcharge
df = df[df['improvement_surcharge'] != 0] 

# dropping the unknown locations Id rows
df = df[~((df['PULocationID'].isin([264,265])) | (df['DOLocationID'].isin([264,265])))]

# passge count 8 anomaly is removed
df.drop(df[df['passenger_count']==8].index,inplace=True)

# dropping 3742 rows with  trip duration less than 60secs
df=df[df['trip_duration_secs']>60]

# trip duration cannot exceed more than 10 hrs as per the nyc limits
df.drop(df[df['trip_duration_secs']> 36000].index,inplace=True) # dropping 255 rows

# the max distance would be around 2o mile while will take an average duration of about min 45 to max 1h:30 min
# hence we are dropping 293 trips got droppped off around 12 am which is an anomaly
df.drop(df[df['tpep_pickup_datetime'].dt.date != df['tpep_dropoff_datetime'].dt.date].index, inplace=True)

# dropping 43 rows with more than 10000 secs with congestion surcharge 0
df.drop(df[(df['trip_duration_secs'] > 10000) & (df['congestion_surcharge'] == 0)].index, inplace=True)

# dropping 5 rows with more than 1000 miles
df.drop(df[df['trip_distance'] >1000].index, inplace=True)

# (5 sec, 0.05 miles, 300 fare) ,(0.18,24,fare-890),(0.38,82,350),(0.38,56704,664.5,same pickup and drop)  rows can be dropped
df.drop(index=df[(df.fare_amount== 300) & (df.trip_distance== 0.05) & (df.trip_duration_secs== 5)].index,inplace=True)
df.drop(index=df[(df.fare_amount== 890) & (df.trip_distance== 0.18) & (df.trip_duration_secs== 24)].index,inplace=True)
df.drop(index=df[(df.fare_amount== 350) & (df.trip_distance== 0.38) & (df.trip_duration_secs== 82)].index,inplace=True)
df.drop(index=df[(df.fare_amount== 664.5) & (df.trip_distance== 0.38) & (df.trip_duration_secs== 56704)].index,inplace=True)

# For same PU and DO locations where location id 132 on 159 rows the fare is 70 which is flat rate from 132 to manhattan 
# therefore these rows can be dropped as we are not sure of the desination.
df.drop(index=df[(df['PULocationID']==132) & (df['DOLocationID']==132) & (df['fare_amount']==70)].index,inplace=True)

#improvement surcharge
#where improvement surcharge is 0 (262)
#250 '0' in congestion surcharge
#236 '0' in trip distance
#7 '0' passengers
#68 '0' fare amounts
#254 '0' mta tax
# so these can be dropped (as there were no discernable pattern)
df.drop(index = df[df['improvement_surcharge'] == 0].index, inplace = True)
In [46]:
#shape of data after cleaning
df.shape
Out[46]:
(386411, 32)
In [47]:
#where improvement surcharge in 0.3(162)
# other things seem to be normal and nothing is discernable
#this can be considered as a mistake of wrong collection by the driver and can be imputed
# also, even if some pattern pattern is hidden the 162 rows is miniscule to say whether it is not a coincidence
df['improvement_surcharge'] = np.where((df['improvement_surcharge'] == 0.3), 1, df['improvement_surcharge'])
In [48]:
# Column extra
# we observed for vendor Id 1, the congestion surcharge and the airport fee were being added in extras. 
# we subtracted the amount in extras 
df['extra'] = np.where(df['VendorID']==1,df['extra']-df['congestion_surcharge']-df['Airport_fee'],df['extra'])

# After that for extras we still see that are values other than 2.50,0.0,7.5,5.0(correct values for extras)
# There are 1418(rows) other values which seem to be anomaly 
# There are few rows with anomaly so it can be dropped 
df=df[df['extra'].isin([2.50,0.00,5.00,7.50])]
In [49]:
# Imputing mta tax with 0.5 where there were 0
df['mta_tax']=np.where(df['mta_tax']==0,0.5,df['mta_tax'])
In [50]:
# column fare amount
#two fares for ratecode id 2 are 69.5 and 78.25 - can be imputed to 70 (flat rate)
df['fare_amount']=np.where((df.RatecodeID==2) & (df.fare_amount.isin([69.50,78.25])),70.0,df.fare_amount)
In [51]:
#below have congestion surcharge as 2.5
#if the pickup starts from airport(132/138/70) and the drop off is in the same Borough(Queens) impute it with zero.
#if the pickup starts from airport(132/138/70) and the drop off is in the Borough Brooklyn impute it with zero.
#no imputation required for pickup starting from airport(132/138/70) and the drop off is in the Borough Bronx
#any pick up and drop locations within the same borough with less and medium level trip distance can be imputed with 0
#any pick up and drop locations between different boroughs with with less trip distance can be imputed with 0

df['congestion_surcharge']=np.where(((df.congestion_surcharge==2.5) & (df.PULocationID.isin([132,138,70])) & (df.DO_Borough=='Queens') & (df.trip_distance<30)), 0, df.congestion_surcharge)
df['congestion_surcharge']=np.where(((df.congestion_surcharge==2.5) & (df.PULocationID.isin([132,138,70])) & (df.DO_Borough=='Brooklyn')), 0, df.congestion_surcharge)
df['congestion_surcharge']= np.where(((df.congestion_surcharge==2.5) & (df['PU_Borough'] == df['DO_Borough']) & (df['PU_Borough']!='Manhattan') & (df['DO_Borough']!='Manhattan') & (df['trip_distance'] <5)),0,df['congestion_surcharge'])
df['congestion_surcharge']= np.where(((df.congestion_surcharge==2.5) & (df['PU_Borough'] != df['DO_Borough']) & (df['PU_Borough']!='Manhattan') & (df['DO_Borough']!='Manhattan') & (df['trip_distance'] <1)),0,df['congestion_surcharge'])
In [52]:
#changing the tips in the cash amount to 0, as the column will only consist of tips made using other modes of payment
df['tip_amount']=np.where(((df.payment_type == 2) & (df.tip_amount!= 0)),0,df.tip_amount)
In [53]:
#Airport_fee

#started from manhattan - 10 are 70 dollars fare - these might have been between the jfk airport and manhattan
df.drop(index= df[(df['Airport_fee']==1.25) & (df.PU_Borough=='Manhattan') & (df.fare_amount==70)].index,inplace=True)

#other 6 are much far from the jfk and lagaurdia - airport fee can be imputed with 0
df['Airport_fee']=np.where(((df['Airport_fee']==1.25) & (df.PU_Borough=='Manhattan') & (df.fare_amount!=70)),0,df['Airport_fee'])

#other occurances where the trip is not starting from 132,138,70 can be imputed with 0
df['Airport_fee']=np.where(((df['Airport_fee']==1.25) & ~(df['PULocationID'].isin([132,138,70]))),0,df['Airport_fee'])

#all the other occurances where the trip is starting from 132,138,70 can be imputed with 1.75
df['Airport_fee']=np.where(((df['Airport_fee']==1.25) & (df['PULocationID'].isin([132,138,70]))),1.75,df['Airport_fee'])
In [54]:
#imputing wrong values present for vendor id 2 in total_amount
df['total_check']= np.round(df.fare_amount+df.extra+df.mta_tax+df.tip_amount+df.tolls_amount+df.improvement_surcharge+df.congestion_surcharge+df.Airport_fee,2)
df['difference']= np.round(df['total_check']-df['total_amount'],2)
df['total_amount'] = np.where(((df.difference!=0)),df.total_check,df.total_amount)

Dropping Insignificant Features

In [55]:
#dropping the Total check Column
df = df.drop('total_check', axis=1)

#dropping the difference Column
df = df.drop('difference', axis=1)
In [56]:
# filtering only week 1 data for further analysis
week1 = [3,4,5,6,7]
hours = [16,17,18,19]
taxidf1 = df[(df['tpep_pickup_datetime'].dt.day.isin(week1)) & (df['tpep_pickup_datetime'].dt.hour.isin(hours))]
taxidf1.shape
Out[56]:
(132030, 32)

Outlier Detection</B>

In [57]:
df_num = taxidf1.select_dtypes(include='number')

# Check for outliers using descriptive statistics
# Calculate the 25th (Q1) and 75th (Q3) percentiles
Q1 = df_num.quantile(0.25)
Q3 = df_num.quantile(0.75)

# Calculate the Interquartile Range (IQR)
IQR = Q3 - Q1

# Define the upper and lower bounds for outlier detection
lower_bound = Q1 - 1.5 * IQR
upper_bound = Q3 + 1.5 * IQR

# Check for outliers
outliers = (df_num < lower_bound) | (df_num > upper_bound)

# Print the columns with outliers
print("Columns with outliers:")
print(outliers.any())
Columns with outliers:
passenger_count           True
trip_distance             True
PULocationID             False
DOLocationID             False
fare_amount               True
extra                     True
mta_tax                  False
tip_amount                True
tolls_amount              True
improvement_surcharge    False
total_amount              True
congestion_surcharge      True
Airport_fee               True
trip_duration_secs        True
pickup_hour              False
drop_hour                False
dtype: bool
In [58]:
numerical_columns = taxidf1.select_dtypes(include='number')

# Check for outliers using descriptive statistics
# Calculate the 25th (Q1) and 75th (Q3) percentiles
Q1 = numerical_columns.quantile(0.25)
Q3 = numerical_columns.quantile(0.75)

# Calculate the Interquartile Range (IQR)
IQR = Q3 - Q1

# Define the upper and lower bounds for outlier detection
lower_bound = Q1 - 1.5 * IQR
upper_bound = Q3 + 1.5 * IQR

# Check for outliers
outliers = (numerical_columns < lower_bound) | (numerical_columns > upper_bound)

# Print information about potential outliers in each numerical column
print("Outlier Information:")
for col in outliers.columns:
    num_outliers = outliers[col].sum()
    total_values = len(outliers)
    percentage_outliers = (num_outliers / total_values) * 100
    print(f"{col}: {num_outliers} outliers ({percentage_outliers:.2f}% of total)")
Outlier Information:
passenger_count: 32470 outliers (24.59% of total)
trip_distance: 16320 outliers (12.36% of total)
PULocationID: 0 outliers (0.00% of total)
DOLocationID: 0 outliers (0.00% of total)
fare_amount: 13773 outliers (10.43% of total)
extra: 11885 outliers (9.00% of total)
mta_tax: 0 outliers (0.00% of total)
tip_amount: 8457 outliers (6.41% of total)
tolls_amount: 9459 outliers (7.16% of total)
improvement_surcharge: 0 outliers (0.00% of total)
total_amount: 14426 outliers (10.93% of total)
congestion_surcharge: 6929 outliers (5.25% of total)
Airport_fee: 10383 outliers (7.86% of total)
trip_duration_secs: 9371 outliers (7.10% of total)
pickup_hour: 0 outliers (0.00% of total)
drop_hour: 0 outliers (0.00% of total)
In [74]:
# boxplot for visualising outliers

fig, ax= plt.subplots(4,4, figsize=(20,20))
for i,j in zip(range(len(df.select_dtypes(include='number').columns)), ax.flatten()):
    sns.boxplot(y=df.select_dtypes(include='number').iloc[:,i],ax=j,orient='v', color = 'orange')
    j.set_facecolor("#F2F2F2")
plt.tight_layout()
plt.show()
In [ ]:
# the boxplot confirms the presence of outlier in all columns
# except location ids, mta tax and improvement surcharge
# lets find the most irrelevant outliers and impute/remove those values for further analysis
In [60]:
# dropping insignificant rows 
df = taxidf1.drop(taxidf1[taxidf1["trip_distance"]<=0.5].index, axis=0)
taxidf1.drop(taxidf1[(taxidf1["trip_duration_secs"]>5000) & (taxidf1["trip_distance"]<10)].index,axis=0,inplace=True)
In [80]:
# outlier analysis
# trip_distance
ax = plt.axes()
 
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")
sns.boxplot(x = taxidf1['trip_distance'],whis= 20, color = 'orange')
plt.savefig('my_plot.png', transparent=True)
In [66]:
# dropping extreme outliers

taxidf1 = taxidf1[taxidf1["trip_distance"] <= 43]
In [78]:
# fare amount
ax = plt.axes()
ax.set_facecolor("#F2F2F2")
sns.boxplot(x = taxidf1['fare_amount'], whis=15, color = 'orange')
plt.show()
In [81]:
Q1 = taxidf1["fare_amount"].quantile(0.25)
Q3 = taxidf1["fare_amount"].quantile(0.75)

# Calculate the Interquartile Range (IQR)
IQR = Q3 - Q1

# Define the upper and lower bounds for outlier detection
lower_bound = Q1 - 15 * IQR
upper_bound = Q3 + 15 * IQR
In [82]:
# checking for outliers present above upper bound
taxidf1[taxidf1["fare_amount"] > upper_bound]
Out[82]:
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count trip_distance RatecodeID store_and_fwd_flag PULocationID DOLocationID payment_type fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee PU_Borough PU_Zone PU_service_zone DO_Borough DO_Zone DO_service_zone trip_duration_secs pickup_date dropoff_date pickup_hour drop_hour pickup_day dropoff_day
606797 2 2023-04-06 19:10:35 2023-04-06 20:07:30 3 40.71 4.0 N 132 1 1 187.8 2.5 0.5 15.0 21.3 1.0 229.85 0.0 1.75 Queens JFK Airport Airports EWR Newark Airport EWR 3415.0 2023-04-06 2023-04-06 19 20 Thursday Thursday
689134 2 2023-04-07 16:43:55 2023-04-07 17:33:17 1 36.11 4.0 N 226 1 1 217.9 2.5 0.5 0.0 31.3 1.0 253.20 0.0 0.00 Queens Sunnyside Boro Zone EWR Newark Airport EWR 2962.0 2023-04-07 2023-04-07 16 17 Friday Friday
In [83]:
# dropping extreme outliers for fare amount
taxidf1 = taxidf1[taxidf1["fare_amount"] < upper_bound]
In [85]:
# total_amount
ax = plt.axes()
 
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")
sns.boxplot(x = taxidf1["total_amount"], whis=15, color='orange')
plt.savefig('my_plot.png', transparent=True)
In [86]:
Q1 =taxidf1["total_amount"].quantile(0.25)
Q3 = taxidf1["total_amount"].quantile(0.75)

# Calculate the Interquartile Range (IQR)
IQR = Q3 - Q1

# Define the upper and lower bounds for outlier detection
lower_bound = Q1 - 15 * IQR
upper_bound = Q3 + 15 * IQR
In [87]:
# checking for outliers above upper bound
taxidf1[taxidf1["total_amount"] > upper_bound]
Out[87]:
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count trip_distance RatecodeID store_and_fwd_flag PULocationID DOLocationID payment_type fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee PU_Borough PU_Zone PU_service_zone DO_Borough DO_Zone DO_service_zone trip_duration_secs pickup_date dropoff_date pickup_hour drop_hour pickup_day dropoff_day
In [88]:
# dropping extreme outliers for total amount
taxidf1 = taxidf1[taxidf1["total_amount"] < upper_bound]
In [89]:
taxidf1.shape
Out[89]:
(132013, 32)
In [91]:
# total_amount
ax = plt.axes()
 
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")
sns.boxplot(x = taxidf1["trip_duration_secs"], whis=15, color = 'orange')
plt.savefig('my_plot.png', transparent=True)
In [92]:
Q1 = taxidf1["trip_duration_secs"].quantile(0.25)
Q3 = taxidf1["trip_duration_secs"].quantile(0.75)

# Calculate the Interquartile Range (IQR)
IQR = Q3 - Q1

# Define the upper and lower bounds for outlier detection
lower_bound = Q1 - 15 * IQR
upper_bound = Q3 + 15 * IQR
In [93]:
# checking for outliers above upper bound
taxidf1[taxidf1["trip_duration_secs"] > upper_bound]
Out[93]:
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count trip_distance RatecodeID store_and_fwd_flag PULocationID DOLocationID payment_type fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee PU_Borough PU_Zone PU_service_zone DO_Borough DO_Zone DO_service_zone trip_duration_secs pickup_date dropoff_date pickup_hour drop_hour pickup_day dropoff_day
In [94]:
# dropping extreme outliers for trip duration
taxidf1 = taxidf1[taxidf1["trip_duration_secs"] < upper_bound]
In [95]:
# final dataset size
taxidf1.shape
Out[95]:
(132013, 32)

The final dataset size after preprocessing stage contains 1,32,013 rows and 32 columns.

Five Number Summary of Variables

In [98]:
# Statistical description for numerical columns
taxidf1.describe().T
Out[98]:
count mean std min 25% 50% 75% max
passenger_count 132013.0 1.419943 0.905025 1.00 1.00 1.00 1.00 6.00
trip_distance 132013.0 3.178477 4.220052 0.01 1.04 1.70 2.98 39.63
PULocationID 132013.0 167.159704 61.984597 4.00 132.00 162.00 234.00 263.00
DOLocationID 132013.0 166.599865 68.819510 1.00 116.00 163.00 234.00 263.00
fare_amount 132013.0 18.155067 15.984805 3.00 9.30 12.80 19.80 175.00
extra 132013.0 2.753877 1.076575 0.00 2.50 2.50 2.50 7.50
mta_tax 132013.0 0.500000 0.000000 0.50 0.50 0.50 0.50 0.50
tip_amount 132013.0 3.578966 3.749207 0.00 1.00 3.02 4.55 158.00
tolls_amount 132013.0 0.498085 1.898453 0.00 0.00 0.00 0.00 41.71
improvement_surcharge 132013.0 1.000000 0.000000 1.00 1.00 1.00 1.00 1.00
total_amount 132013.0 28.992484 20.634856 5.90 17.36 22.20 29.88 214.17
congestion_surcharge 132013.0 2.368877 0.557331 0.00 2.50 2.50 2.50 2.50
Airport_fee 132013.0 0.137613 0.471049 0.00 0.00 0.00 0.00 1.75
trip_duration_secs 132013.0 930.973601 751.976508 61.00 447.00 718.00 1138.00 9213.00
pickup_hour 132013.0 17.477286 1.084292 16.00 17.00 17.00 18.00 19.00
drop_hour 132013.0 17.728542 1.133540 16.00 17.00 18.00 19.00 21.00
In [ ]:
# from the summary, we can infer that the mta_tax, improvement_surcharge columns has 0 variance. 
# Hence, it will provide no value to the model. 
# those can be removed before model building.
In [99]:
# Statistical description for categorical columns
taxidf1.describe(include=object).T
Out[99]:
count unique top freq
VendorID 132013 2 2 97903
RatecodeID 132013.0 5.0 1.0 126029.0
store_and_fwd_flag 132013 2 N 131381
payment_type 132013 4 1 107711
PU_Borough 132013 4 Manhattan 120246
PU_Zone 132013 144 Midtown Center 8625
PU_service_zone 132013 3 Yellow Zone 117984
DO_Borough 132013 6 Manhattan 122721
DO_Zone 132013 246 Upper East Side North 6812
DO_service_zone 132013 4 Yellow Zone 117388
pickup_date 132013 5 2023-04-05 28843
dropoff_date 132013 5 2023-04-05 28843
pickup_day 132013 5 Wednesday 28843
dropoff_day 132013 5 Wednesday 28843
In [100]:
taxidf1.shape
Out[100]:
(132013, 32)
In [ ]:
# the final dataset contains 1,32,013 rows and 32 columns.

Exploratory Data Analysis

In [105]:
taxidf1.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 132013 entries, 256283 to 710537
Data columns (total 32 columns):
 #   Column                 Non-Null Count   Dtype         
---  ------                 --------------   -----         
 0   VendorID               132013 non-null  object        
 1   tpep_pickup_datetime   132013 non-null  datetime64[ns]
 2   tpep_dropoff_datetime  132013 non-null  datetime64[ns]
 3   passenger_count        132013 non-null  int32         
 4   trip_distance          132013 non-null  float64       
 5   RatecodeID             132013 non-null  object        
 6   store_and_fwd_flag     132013 non-null  object        
 7   PULocationID           132013 non-null  int64         
 8   DOLocationID           132013 non-null  int64         
 9   payment_type           132013 non-null  object        
 10  fare_amount            132013 non-null  float64       
 11  extra                  132013 non-null  float64       
 12  mta_tax                132013 non-null  float64       
 13  tip_amount             132013 non-null  float64       
 14  tolls_amount           132013 non-null  float64       
 15  improvement_surcharge  132013 non-null  float64       
 16  total_amount           132013 non-null  float64       
 17  congestion_surcharge   132013 non-null  float64       
 18  Airport_fee            132013 non-null  float64       
 19  PU_Borough             132013 non-null  object        
 20  PU_Zone                132013 non-null  object        
 21  PU_service_zone        132013 non-null  object        
 22  DO_Borough             132013 non-null  object        
 23  DO_Zone                132013 non-null  object        
 24  DO_service_zone        132013 non-null  object        
 25  trip_duration_secs     132013 non-null  float64       
 26  pickup_date            132013 non-null  object        
 27  dropoff_date           132013 non-null  object        
 28  pickup_hour            132013 non-null  int64         
 29  drop_hour              132013 non-null  int64         
 30  pickup_day             132013 non-null  object        
 31  dropoff_day            132013 non-null  object        
dtypes: datetime64[ns](2), float64(11), int32(1), int64(4), object(14)
memory usage: 32.7+ MB
In [106]:
# dropping the redundant columns before analysis
taxidf1.drop(columns = ['tpep_pickup_datetime', 'tpep_dropoff_datetime' , 'PU_Zone', 'DO_Zone', 'PU_service_zone', 'DO_service_zone', 'pickup_date', 'dropoff_date'], inplace = True)
In [272]:
# Dtype conversion for analysis
taxidf1['passenger_count'] = taxidf1['passenger_count'].astype(object)
taxidf1['PULocationID'] = taxidf1['PULocationID'].astype(object)
taxidf1['DOLocationID'] = taxidf1['DOLocationID'].astype(object)
taxidf1['pickup_hour'] = taxidf1['pickup_hour'].astype(object)
taxidf1['drop_hour'] = taxidf1['drop_hour'].astype(object)
In [273]:
taxidf1.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 132013 entries, 256283 to 710537
Data columns (total 22 columns):
 #   Column                Non-Null Count   Dtype  
---  ------                --------------   -----  
 0   VendorID              132013 non-null  object 
 1   passenger_count       132013 non-null  object 
 2   trip_distance         132013 non-null  float64
 3   RatecodeID            132013 non-null  object 
 4   store_and_fwd_flag    132013 non-null  object 
 5   PULocationID          132013 non-null  object 
 6   DOLocationID          132013 non-null  object 
 7   payment_type          132013 non-null  object 
 8   fare_amount           132013 non-null  float64
 9   extra                 132013 non-null  float64
 10  tip_amount            132013 non-null  float64
 11  tolls_amount          132013 non-null  float64
 12  total_amount          132013 non-null  float64
 13  congestion_surcharge  132013 non-null  float64
 14  Airport_fee           132013 non-null  float64
 15  PU_Borough            132013 non-null  object 
 16  DO_Borough            132013 non-null  object 
 17  trip_duration_secs    132013 non-null  float64
 18  pickup_hour           132013 non-null  object 
 19  drop_hour             132013 non-null  object 
 20  pickup_day            132013 non-null  object 
 21  dropoff_day           132013 non-null  object 
dtypes: float64(9), object(13)
memory usage: 27.2+ MB

Univariate Analysis - Numeric Variables

In [294]:
taxidf1.select_dtypes('number').columns
Out[294]:
Index(['trip_distance', 'fare_amount', 'extra', 'tip_amount', 'tolls_amount',
       'total_amount', 'congestion_surcharge', 'Airport_fee',
       'trip_duration_secs'],
      dtype='object')
In [295]:
# Create a figure with 1 row and 2 columns
plt.figure(figsize=(15, 8))

# trip distance
plt.subplot(3, 3, 1)
sns.histplot(x = taxidf1['trip_distance'], color ='orange')
plt.title('Distribution of trip_distance')
plt.gca().set_facecolor("#F2F2F2")

# fare_amount
plt.subplot(3, 3, 2)
sns.histplot(x = taxidf1['fare_amount'], color ='orange')
plt.title('Distribution of fare_amount')
plt.gca().set_facecolor("#F2F2F2")

# extra
plt.subplot(3, 3, 3)
sns.histplot(x = taxidf1['extra'], color ='orange')
plt.title('Distribution of extra')
plt.gca().set_facecolor("#F2F2F2")

# tip_amount
plt.subplot(3, 3, 4)
sns.histplot(x = taxidf1['tip_amount'], color ='orange')
plt.title('Distribution of tip_amount')
plt.gca().set_facecolor("#F2F2F2")

# tolls_amount
plt.subplot(3, 3, 5)
sns.histplot(x = taxidf1['tolls_amount'], color ='orange')
plt.title('Distribution of tolls_amount')
plt.gca().set_facecolor("#F2F2F2")

# total_amount
plt.subplot(3, 3, 6)
sns.histplot(x = taxidf1['total_amount'], color ='orange')
plt.title('Distribution of total_amount')
plt.gca().set_facecolor("#F2F2F2")

# congestion_surcharge
plt.subplot(3, 3, 7)
sns.histplot(x = taxidf1['congestion_surcharge'], color ='orange')
plt.title('Distribution of congestion_surcharge')
plt.gca().set_facecolor("#F2F2F2")

# Airport_fee
plt.subplot(3, 3, 8)
sns.histplot(x = taxidf1['Airport_fee'], color ='orange')
plt.title('Distribution of Airport_fee')
plt.gca().set_facecolor("#F2F2F2")

# trip_duration_secs
plt.subplot(3, 3, 9)
sns.histplot(x = taxidf1['trip_duration_secs'], color ='orange')
plt.title('Distribution of trip_duration_secs')
plt.gca().set_facecolor("#F2F2F2")

# Adjust subplot layout
plt.tight_layout()

# Show the plot
plt.show()

Univariate Analysis - Categorical Variables

In [290]:
taxidf1.select_dtypes(object).columns
Out[290]:
Index(['VendorID', 'passenger_count', 'RatecodeID', 'store_and_fwd_flag',
       'PULocationID', 'DOLocationID', 'payment_type', 'PU_Borough',
       'DO_Borough', 'pickup_hour', 'drop_hour', 'pickup_day', 'dropoff_day'],
      dtype='object')
In [293]:
# Create a figure with 1 row and 2 columns
plt.figure(figsize=(15, 8))

# Vendor ID
plt.subplot(4, 3, 1)
sns.countplot(x = taxidf1['VendorID'], color ='orange')
plt.title('Distribution of VendorID')
plt.gca().set_facecolor("#F2F2F2")

# passenger count
plt.subplot(4,3,2)
sns.countplot(x= taxidf1['passenger_count'], color='orange')
plt.title('Distribution of Passenger count')
plt.gca().set_facecolor("#F2F2F2")

# Ratecodeid
plt.subplot(4,3,3)
sns.countplot(x=taxidf1['RatecodeID'], color='orange')
plt.title('Distribution of RatecodeID')
plt.gca().set_facecolor("#F2F2F2")

# store and fwd flag
plt.subplot(4,3,4)
sns.countplot(x=taxidf1['store_and_fwd_flag'], color='orange')
plt.title('Distribution of store_and_fwd_flag')
plt.gca().set_facecolor("#F2F2F2")


# payment_type
plt.subplot(4,3,5)
sns.countplot(x=taxidf1['payment_type'], color='orange')
plt.title('Distribution of payment_type')
plt.gca().set_facecolor("#F2F2F2")

# PU_Borough
plt.subplot(4,3,6)
sns.countplot(x=taxidf1['PU_Borough'], color='orange')
plt.title('Distribution of PU_Borough')
plt.gca().set_facecolor("#F2F2F2")

# DO_Borough
plt.subplot(4,3,7)
sns.countplot(x=taxidf1['DO_Borough'], color='orange')
plt.title('Distribution of DO_Borough')
plt.gca().set_facecolor("#F2F2F2")

# pickup_hour
plt.subplot(4,3,8)
sns.countplot(x=taxidf1['pickup_hour'], color='orange')
plt.title('Distribution of pickup_hour')
plt.gca().set_facecolor("#F2F2F2")

# drop_hour
plt.subplot(4,3,9)
sns.countplot(x=taxidf1['drop_hour'], color='orange')
plt.title('Distribution of drop_hour')
plt.gca().set_facecolor("#F2F2F2")

# pickup_day
plt.subplot(4,3,10)
sns.countplot(x=taxidf1['pickup_day'], color='orange')
plt.title('Distribution of pickup_day')
plt.gca().set_facecolor("#F2F2F2")

# dropoff_day
plt.subplot(4,3,11)
sns.countplot(x=taxidf1['dropoff_day'], color='orange')
plt.title('Distribution of dropoff_day')
plt.gca().set_facecolor("#F2F2F2")


# Adjust subplot layout
plt.tight_layout()

# Show the plot
plt.show()

Inference

From the above visualization we can observe that,

1) 74.16% of the trips fall under vendorID 2 and 25.84% trips fall under vendor Id 1.</br> 2) 75.41% ,14.98%, 4.64%,2.95%,1.25%,0.78% of the trips there were single,two,three,four,five,six passenger respectively.</br> 3) In 95.47%,4.25% ,0.21%,0.01%,0.06% of the trips fall under RatecodeID-1,2,3,4,5 respectively.</br> 4) Congestion charge has been collected for 94.76% of the trips.</br> 5) 7.86% of the trips were started from Laguardia and JFK airports whereas 92.14% from other locations.</br> 6) 91% of the trips have been charged an extra fee of 2.5 and have been not been charged for 1.19% of the trips.</br> 7) An extra fee of 5 dollars has been charged for 4.29% and 7.5 dollars charged for 3.52% of trips.</br> 8) Wednesdays has the highest percent of pickups with 21.85% and Mondays has the least percent pickups with 18.17% and dropoff same since occuring on the same day.</br> 9) The highest frequency of pickups is at 6 PM with 27.16% and the lowest is at 7 PM with 22.29% 10) 6pm in the evenings has highest percentage of dropoffs with 28.54% and 8pm having least percentage of dropoffs with 4.39%.</br> 11) LocationId with 161 is the top most common pickup with 15.2% Pickups whereas LocationId with 236 is the most common Dropoff with 14.5% Dropoff trips.</br> 12) In 99.52% of the trips, the vehicle had connection with the server whereas 0.48% did not have connection.</br> 13) In 81.59%,17.56%,0.29%,0.56% trips the payments were made through Credit Card,cash,No charge and disputed respectively.</br>

Bivariate Analysis

In [119]:
# correlation matrix of all the numeric columns
taxidf1.corr()
Out[119]:
trip_distance fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee trip_duration_secs
trip_distance 1.000000 0.965998 0.598087 NaN 0.566148 0.707534 NaN 0.956565 -0.289209 0.740405 0.843813
fare_amount 0.965998 1.000000 0.562002 NaN 0.584184 0.695211 NaN 0.981748 -0.293678 0.683594 0.909371
extra 0.598087 0.562002 1.000000 NaN 0.415577 0.601422 NaN 0.628758 -0.214850 0.709375 0.460536
mta_tax NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
tip_amount 0.566148 0.584184 0.415577 NaN 1.000000 0.464233 NaN 0.704890 -0.104998 0.398755 0.528469
tolls_amount 0.707534 0.695211 0.601422 NaN 0.464233 1.000000 NaN 0.755026 -0.140855 0.550064 0.545918
improvement_surcharge NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
total_amount 0.956565 0.981748 0.628758 NaN 0.704890 0.755026 NaN 1.000000 -0.253611 0.700756 0.881671
congestion_surcharge -0.289209 -0.293678 -0.214850 NaN -0.104998 -0.140855 NaN -0.253611 1.000000 -0.432679 -0.193448
Airport_fee 0.740405 0.683594 0.709375 NaN 0.398755 0.550064 NaN 0.700756 -0.432679 1.000000 0.533509
trip_duration_secs 0.843813 0.909371 0.460536 NaN 0.528469 0.545918 NaN 0.881671 -0.193448 0.533509 1.000000
In [121]:
# since mta_tax and improvement surcharge has no correlation. 
# Removing it from the correlation analysis
taxidf1.drop(columns = ['mta_tax', 'improvement_surcharge'], inplace = True)
In [122]:
# Heatmap for correlation analysis
plt.figure(figsize=(15,8))
ax = plt.axes()
ax.set_facecolor('#F2F2F2')
sns.heatmap(taxidf1.corr(), annot=True, vmin=-1, vmax=1, cmap="YlOrBr")
plt.show()
In [128]:
# create a dataframe for numeric variables
df_numeric = taxidf1.select_dtypes(np.number)
# pairplot for checking the scatterplot 
sns.pairplot(df_numeric, palette='YlOrBr')
plt.show()

Inference

From the heat map of correlation matrix and the pairplot, the points that can be concluded are:

1) Fare amount and total amount has the strongest correlation with a value of 0.98</br> 2) Also, trip duration has very high correlations with both trip_distance, total amount and fare amount having correlations of 0.84,0.88 and 0.91 respectively</br> 3) mta_tax and improvement surcharge features are all constants.</br>

In [157]:
# Average trip duration for the pickup days
plt.figure(figsize=(10,5))
ax = plt.axes()
a = taxidf1.groupby(['pickup_day'])['trip_duration_secs'].mean()
a=round(a,2)
plt.bar(x=range(0,5),height=a.values, color=plt.cm.YlOrBr(range(6,256,50)))

for i in range(len(a)):
    plt.text(s=str(a[i]), x=i, y=a.values[i]+10,ha='center')
plt.xticks(labels=a.index,ticks=range(0,5))
ax.set_facecolor('#F2F2F2')
plt.xlabel('Pickup Days')
plt.ylabel('Trip  duration in seconds')
plt.title('Average Trip Durations for Pickup days')
plt.show()

Inference

The average trip duration of Wednesdays is the highest with 1069.19 seconds and the least is on Tuesday with 848.33 seconds.

In [158]:
# Average trip duration for the dropoff hours
plt.figure(figsize=(10,5))
ax = plt.axes()
a2 = taxidf1.groupby(['drop_hour'])['trip_duration_secs'].mean()
a2=round(a2,2)
plt.bar(x=range(len(a2)),height=a2.values, color=plt.cm.YlOrBr(range(6,256,250//len(a2))))

for i, value in enumerate(a2.values):
    plt.text(i, value + 30, str(value), ha='center')
ax.set_facecolor('#F2F2F2')
plt.xticks(labels=a2.index,ticks=range(len(a2)))
plt.xlabel('Dropoff Hours')
plt.ylabel('Trip duration in seconds')
plt.title('Average Trip Duration for Dropoff Hours')
plt.show()

Inference

For the dropoffs at 9 PM the average trip duration is the highest with the value of 5867.33 seconds and the least is at 4PM with value of 793.3 seconds.

In [160]:
# passenger count for drop off hours
plt.figure(figsize=(10,5))
ax = plt.axes()
a5 = taxidf1.groupby(['drop_hour'])['passenger_count'].sum()/len(taxidf1)*100
a5=round(a5,2)
plt.bar(x=range(len(a5)),height=a5.values, color=plt.cm.YlOrBr(range(6,256,250//len(a5))))

for i, value in enumerate(a5.values):
    plt.text(i, value + 0.3, str(value), ha='center')
ax.set_facecolor('#F2F2F2')
plt.xticks(labels=a5.index,ticks=range(len(a5)))
plt.ylabel('Number of Passengers')
plt.xlabel('Drop Hours')
plt.title('Total passenger count for drop off hours')
plt.show()

Inference

The passenger count is highest at 6PM with 40.22 % passengers during the drop hours.

In [161]:
# Total passenger count for pickup days
plt.figure(figsize=(10,5))
ax = plt.axes()
a18 = taxidf1.groupby(['pickup_day'])['passenger_count'].sum()/len(taxidf1)*100
a18=round(a18,2)
plt.bar(x=range(len(a18)),height=a18.values, color=plt.cm.YlOrBr(range(6,256,250//len(a18))))

for i, value in enumerate(a18.values):
    plt.text(i, value + 0.3, str(value), ha='center')
ax.set_facecolor('#F2F2F2')
plt.xticks(labels=a18.index,ticks=range(len(a18)))
plt.ylabel('Number of Passengers')
plt.title('Total passenger count for pickup days')
plt.show()

Inference

The passenger count is highest on Wednesdays with 30.21% passengers and least on Mondays with 25.34% passengers during the pickup days

In [162]:
# Total Passenger count for Drop off days
plt.figure(figsize=(10,5))
ax = plt.axes()
a18 = taxidf1.groupby(['dropoff_day'])['passenger_count'].sum()/len(taxidf1)*100
a18=round(a18,2)
plt.bar(x=range(len(a18)),height=a18.values, color=plt.cm.YlOrBr(range(6,256,250//len(a18))))

for i, value in enumerate(a18.values):
    plt.text(i, value + 0.3, str(value), ha='center')
ax.set_facecolor('#F2F2F2')
plt.xticks(labels=a18.index,ticks=range(len(a18)))
plt.ylabel('Number of Passengers')
plt.title('Total Passenger count for Dropoff days')
plt.show()

Inference

By infering previous observation it can be concluded that the anlysis on the total passengers on the pickup days is the same as the total passengers on the drop days.

In [163]:
# Average total amount for Pickup Days
plt.figure(figsize=(10,5))
ax = plt.axes()
a13 = taxidf1.groupby(['pickup_day'])['total_amount'].mean()
a13=round(a13,2)
plt.bar(x=range(len(a13)),height=a13.values, color=plt.cm.YlOrBr(range(6,256,250//len(a13))))

for i, value in enumerate(a13.values):
    plt.text(i, value +0.5, str(value), ha='center')
ax.set_facecolor('#F2F2F2')
plt.xticks(labels=a13.index,ticks=range(len(a13)))
plt.title('Average Total Amount for Pickup days')
plt.ylabel('Dollars')
plt.show()

Inference

The average total amount for the Wednesdays(29.78 dollars) are the highest and the least is on Tuesdays(28.05 dollars)

In [164]:
# Average Total Amount for Pickup Hours
plt.figure(figsize=(10,5))
ax = plt.axes()
a19 = taxidf1.groupby(['pickup_hour'])['total_amount'].mean()
a19=round(a19,2)
plt.bar(x=range(len(a19)),height=a19.values, color=plt.cm.YlOrBr(range(6,256,250//len(a19))))

for i, value in enumerate(a19.values):
    plt.text(i, value +0.3, str(value), ha='center')
ax.set_facecolor('#F2F2F2')
plt.xticks(labels=a19.index,ticks=range(len(a19)))
plt.title('Average Total Amount for Pickup hours')
plt.ylabel('Dollars')
plt.show()

Inference

The average total amount for pickups at 4PM is the highest with 30.5 dollars and the least is at 9PM with 27.71 dollars.

In [165]:
# Average total amount for Dropoff hours
plt.figure(figsize=(10,5))
ax = plt.axes()
a20 = taxidf1.groupby(['drop_hour'])['total_amount'].mean()
a20=round(a20,2)
plt.bar(x=range(len(a20)),height=a20.values, color=plt.cm.YlOrBr(range(6,256,250//len(a20))))

for i, value in enumerate(a20.values):
    plt.text(i, value +0.5, str(value), ha='center')
ax.set_facecolor('#F2F2F2')
plt.xticks(labels=a20.index,ticks=range(len(a20)))
plt.title('Average Total Amount for Dropoff hours')
plt.ylabel('Dollars')
plt.show()

Inference

The average total amount for dropoffs at 9PM is the highest with 106.77 dollars and the least is at 4PM with 24.25 dollars.

In [156]:
# Congestion surcharge vs Pickup Borough
# creating a crosstab of congestion surcharge with pickup Boroughs as cs_pub
cs_pub = pd.crosstab(taxidf1["PU_Borough"], df["congestion_surcharge"])
cs_pub
Out[156]:
congestion_surcharge 0.0 2.5
PU_Borough
Bronx 24 3
Brooklyn 172 120
Manhattan 2072 112549
Queens 4392 6995
In [167]:
# Congestion surcharge vs Pickup Borough
plt.figure(figsize=(10,5))

ax = plt.axes()
ax.set_facecolor('#F2F2F2')
sns.countplot(y=taxidf1["PU_Borough"], hue=taxidf1["congestion_surcharge"], palette="YlOrBr")
legend = plt.legend(title="Congestion Surcharge", loc="lower right")
plt.setp(legend.get_title(), fontsize='medium') 
plt.title('Distribution of Congestion Surcharge for Pickup Boroughs')
plt.show()

Inference

Manhattan has the highest trips with congestion surcharges.

In [168]:
# bivariate analysis of congestion surcharge and drop off borough

# creating a crosstab of congestion surcharge with dropoff Boroughs as cs_dob
cs_dob = pd.crosstab(taxidf1["congestion_surcharge"], taxidf1["DO_Borough"])
cs_dob
Out[168]:
DO_Borough Bronx Brooklyn EWR Manhattan Queens Staten Island
congestion_surcharge
0.0 281 1762 264 2546 2057 14
2.5 216 2030 5 120175 2652 11
In [169]:
round(taxidf1[(taxidf1['DO_Borough']=='Manhattan')&(taxidf1["congestion_surcharge"]==2.5)].shape[0]/len(taxidf1)*100,2)
Out[169]:
91.03
In [170]:
plt.figure(figsize=(10,5))

ax = plt.axes()
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")

sns.countplot(y=taxidf1["DO_Borough"], hue=taxidf1["congestion_surcharge"], palette="YlOrBr")

legend = plt.legend(title="Congestion Surcharge", loc="lower right")
plt.setp(legend.get_title(), fontsize='medium') 
plt.title('Distribution of congestion surcharge on Dropoff Boroughs')
plt.show()

Inferencce

Most Trips were to Manahattan for which the congestion surcharge was charged 91.03 %</br>

In [171]:
# analysis of congestion surcharge with airport trips with fees
taxidf1["congestion_surcharge"][taxidf1["Airport_fee"] == 1.75].shape
Out[171]:
(10381,)
In [172]:
# crosstab 
pd.crosstab(taxidf1["congestion_surcharge"],taxidf1["Airport_fee"])
Out[172]:
Airport_fee 0.00 1.75
congestion_surcharge
0.0 2952 3972
2.5 118680 6409
In [173]:
plt.figure(figsize=(10,5))

ax = plt.axes()
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")

sns.countplot(y=taxidf1["Airport_fee"], hue=taxidf1["congestion_surcharge"], palette="YlOrBr")

legend = plt.legend(title="Congestion Surcharge", loc="lower right")
plt.setp(legend.get_title(), fontsize='medium') 
plt.title('Congestion Surcharge Vs Airport Fee')
plt.show()

Inference

(118682) 94.76% trips had congestion surcharge out of the (6409) 4.85 % trips where there were airport fees.</br>

In [176]:
# analysis of pick up location with trip duration
plt.figure(figsize=(10,5))

ax = plt.axes()
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")
sns.scatterplot(x=taxidf1["PULocationID"], y= taxidf1["trip_duration_secs"], color="darkgoldenrod")
plt.title('Pickup Location IDs Vs Trip Duration Seconds')
plt.show()

Inference

There is no correlation between PULocationID and trip duration.</br>

In [179]:
# trip distance with fare amount
plt.figure(figsize=(10,5))

custom_palette = sns.color_palette("YlOrBr", 5)

ax = plt.axes()
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")
sns.scatterplot(x=taxidf1["trip_distance"], y= taxidf1["fare_amount"], color= 'orange')
plt.title('Correlation between Trip Distance and Fare Amount')
plt.show()

Inference

1) Trip distance and fare_amount are highly correlated.</br> 2) Also, there is a constant value of fare amount 70 dollars observed for several trip distances (This may look like an anomaly, but the fare amount of trips between Manhattan and JFK airports have a flat rate of 70 dollars)

Multi-Variate Analysis

In [182]:
# Analysis of pick up location with trip duration and trip distance

plt.figure(figsize=(10,5))
ax = plt.axes()
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")
custom_palette = sns.color_palette("YlOrBr", 5)
sns.scatterplot(x=taxidf1["PULocationID"], y= taxidf1["trip_duration_secs"], hue= taxidf1["trip_distance"], palette="YlOrBr")
plt.show()

Inference

1) Most of trip distances are betwen 0 to 30 miles across all PUlocationID.</br> 2) As the trip duration increases trip distance also increases.

In [183]:
# trip distance with fare amount and Pickup Borough

plt.figure(figsize=(10,5))

custom_palette = sns.dark_palette("orange", n_colors=5, reverse=True)

ax = plt.axes()
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")

sns.scatterplot(x=taxidf1["trip_distance"], y= taxidf1["fare_amount"], hue=taxidf1["PU_Borough"])
plt.show()

Inference

1) For similar trip distances, most trips starting from Manhattan has more fare amounts than the other boroughs.</br>

In [184]:
# trip distance with fare amount and Drop Borough

plt.figure(figsize=(10,5))

custom_palette = sns.dark_palette("orange", n_colors=6, reverse=True)

ax = plt.axes()
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")

sns.scatterplot(x=taxidf1["trip_distance"], y= taxidf1["fare_amount"], hue=taxidf1["DO_Borough"], palette=custom_palette)
plt.show()

Inference

1) As the trip distances increases, the dropoffs concentrated in the EWR borough.</br> 2) The increase of fare amount with the trip distance remains more or less constant accross all the Boroughs.

In [188]:
# checking the location(s) where the frequency of congestion surcharge is most in Manhattan

plt.figure(figsize=(10,15))

ax = plt.axes()

sns.countplot(y=taxidf1["PULocationID"][taxidf1["PU_Borough"] == "Manhattan"], hue=taxidf1["congestion_surcharge"], palette="YlOrBr")
ax.set_facecolor('#F2F2F2')
legend = plt.legend(title="Congestion Surcharge", loc="lower right")
plt.setp(legend.get_title(), fontsize='medium') 

plt.xticks(rotation=90)
plt.show()
In [187]:
pd.crosstab(taxidf1["congestion_surcharge"], taxidf1["PULocationID"][taxidf1["PULocationID"].isin([161,236,237])])
Out[187]:
PULocationID 161 236 237
congestion_surcharge
0.0 27 21 14
2.5 8598 6029 6850
In [ ]:
# The highest congestion surcharge with $2.5 was in PULocationID 161
In [189]:
# checking the location(s) where the frequency of congestion surcharge charged is the most in Manhattan

plt.figure(figsize=(10,15))

ax = plt.axes()
# Setting the background color of the plot
# using set_facecolor() method
ax.set_facecolor("#F2F2F2")

sns.countplot(y=taxidf1["DOLocationID"][taxidf1["DO_Borough"] == "Manhattan"], hue=taxidf1["congestion_surcharge"], palette="YlOrBr")

legend = plt.legend(title="Congestion Surcharge", loc="lower right")
plt.setp(legend.get_title(), fontsize='medium') 

plt.xticks(rotation=90)
plt.show()
In [190]:
pd.crosstab(taxidf1["congestion_surcharge"], taxidf1["DOLocationID"][taxidf1["DOLocationID"].isin([161,236,237])])
Out[190]:
DOLocationID 161 236 237
congestion_surcharge
0.0 6 45 5
2.5 4608 6767 6129
In [ ]:
# The highest congestion surcharge with $2.5 was in DULocationID 236
In [191]:
# trip duration vc trip distance vs pickup hour
plt.figure(figsize=(10,5))

avg_time_per_mile = taxidf1['trip_duration_secs'].mean()/taxidf1['trip_distance'].mean()

a9 = taxidf1.groupby(['pickup_hour'])[['trip_duration_secs','trip_distance']].mean()
a9=round(a9,2)
height=round(a9['trip_duration_secs']/a9['trip_distance'],2)
plt.bar(x=range(len(a9)),height=height, color=plt.cm.YlOrBr(range(6,256,250//len(a9))))

for i, value in enumerate(height):
    plt.text(i, value +5, str(value), ha='center')
plt.xticks(labels=a9.index,ticks=range(len(a9)))
plt.ylabel('Trip duration in seconds')
plt.title('Average Trip Duration per mile')
plt.show()

Inference

The average trip duration per mile for pickups is the highest at 4PM with the value of 321.46 seconds and the least being 7 PM with the value of 240.03 seconds.

In [194]:
# trip duration vc trip distance vs dropoff hour
plt.figure(figsize=(10,5))

avg_time_per_mile = taxidf1['trip_duration_secs'].mean()/taxidf1['trip_distance'].mean()

a10 = taxidf1.groupby(['drop_hour'])[['trip_duration_secs','trip_distance']].mean()
a10=round(a10,2)
height=round(a10['trip_duration_secs']/a10['trip_distance'],2)
plt.bar(x=range(len(a10)),height=height, color=plt.cm.YlOrBr(range(6,256,250//len(a10))))

for i, value in enumerate(height):
    plt.text(i, value +5, str(value), ha='center')
plt.xticks(labels=a10.index,ticks=range(len(a10)))
plt.ylabel('Trip duration in seconds')
plt.title('Average Trip Duration per mile')
plt.show()

Inference

The average trip duration per mile for dropoffs is the highest at 4PM with the value of 375.22 seconds and the least being 8PM with the value of 190.39 seconds.

In [196]:
# trip duration vs trip distance vs pickup day
plt.figure(figsize=(10,5))

avg_time_per_mile = taxidf1['trip_duration_secs'].mean()/taxidf1['trip_distance'].mean()

a11 = taxidf1.groupby(['pickup_day'])[['trip_duration_secs','trip_distance']].mean()
a11=round(a11,2)
height=round(a11['trip_duration_secs']/a11['trip_distance'],2)
plt.bar(x=range(len(a11)),height=height, color=plt.cm.YlOrBr(range(6,256,250//len(a11))))

for i, value in enumerate(height):
    plt.text(i, value +5, str(value), ha='center')
plt.xticks(labels=a11.index,ticks=range(len(a11)))
plt.ylabel('Trip duration in seconds')
plt.title('Average Trip Duration per mile')
plt.show()

Inference

The average trip duration per mile on Wednesdays is the highest with the value 352.15 seconds and the least is on Tuesdays with 352.15 seconds. The dropoff days will have the same days for the highest and the least trip durations per second.

In [198]:
# congestion surcharge vs trip distance vs pickup day
plt.figure(figsize=(10,5))
a14 = taxidf1[taxidf1['congestion_surcharge']!=0].groupby('pickup_day')['trip_distance'].count()
a14=round(a14,2)
plt.bar(x=range(len(a14)),height=a14.values, color=plt.cm.YlOrBr(range(6,256,250//len(a14))))

for i, value in enumerate(a14.values):
    plt.text(i, value +0.5, str(value), ha='center')
plt.xticks(labels=a14.index,ticks=range(len(a14)))
plt.title('No of trips with congestion surcharge')
plt.ylabel('count')
plt.show()

Inference

The number of trips are highest on Wednesdays with 26063.

In [199]:
# congestion surcharge vs pickup hour vs trip distance
plt.figure(figsize=(10,5))
a17 = taxidf1[taxidf1['congestion_surcharge']!=0].groupby('pickup_hour')['trip_distance'].count()
a17=round(a17,2)
plt.bar(x=range(len(a17)),height=a17.values, color=plt.cm.YlOrBr(range(6,256,250//len(a17))))

for i, value in enumerate(a17.values):
    plt.text(i, value +0.5, str(value), ha='center')
plt.xticks(labels=a17.index,ticks=range(len(a17)))
plt.title('No of trips with congestion surcharge')
plt.ylabel('count')
plt.show()

Inference

The number of trips with congestion charge for pickups is highest at 6PM with the value 32647 and the least is at 7PM with the value 26668.

In [200]:
# congestion surcharge vs drop hour vs trip distance
plt.figure(figsize=(10,5))
a16 = taxidf1[taxidf1['congestion_surcharge']!=0].groupby('drop_hour')['trip_distance'].count()
a16=round(a16,2)
plt.bar(x=range(len(a16)),height=a16.values, color=plt.cm.YlOrBr(range(6,256,250//len(a16))))

for i, value in enumerate(a16.values):
    plt.text(i, value +0.5, str(value), ha='center')
plt.xticks(labels=a16.index,ticks=range(len(a16)))
plt.title('No of trips with congestion surcharge')
plt.ylabel('count')
plt.show()

Inference

The number of trips with congestion charge for dropoffs is highest at 6PM with the value 34359 and the least at 8 PM with only 5200 trip.

Top 5 less Congested Routes

In [ ]:
# pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
In [201]:
import math
def bbb(group):
#     ran = group.max() - group.min()
    if group.max() == group.min():
        l=[round(math.floor(group.min())), round(math.ceil(group.max()+1))]    

    else:
        #     print(group.min())
        #     print(group.max())
        val = np.round(math.floor(group.min()))

        l=[val]
        while (val<group.max()):
            val=val+2
            l.append(val)
        else:
            if (val!=group.max()) & (val<group.max()):
                l.append(math.ceil(group.max()))
    return group.value_counts(bins=l)
In [202]:
d1 = pd.DataFrame((df.groupby(['PULocationID','DOLocationID'])['trip_distance'].apply(bbb)))

d1 = d1.reset_index()

d1.head(10)
Out[202]:
PULocationID DOLocationID level_2 trip_distance
0 4 13 (2.999, 5.0] 1
1 4 35 (6.999, 9.0] 1
2 4 48 (2.999, 5.0] 1
3 4 68 (1.999, 4.0] 1
4 4 79 (-0.001, 2.0] 7
5 4 90 (0.999, 3.0] 2
6 4 107 (-0.001, 2.0] 2
7 4 113 (0.999, 3.0] 1
8 4 114 (0.999, 3.0] 3
9 4 129 (6.999, 9.0] 1
In [203]:
d1['dist_lower_bound']=round(d1.level_2.map(lambda x: np.abs(x.left)))
d1['dist_upper_bound']=round(d1.level_2.map(lambda x: x.right))
In [204]:
d2 = d1.copy()

d2 = d2.drop(columns = 'level_2')
In [205]:
d2.isnull().sum()
Out[205]:
PULocationID        0
DOLocationID        0
trip_distance       0
dist_lower_bound    0
dist_upper_bound    0
dtype: int64
In [206]:
d2 = d2.rename(columns = {'trip_distance' : 'trip_occurence'})
In [207]:
d2.isnull().sum()
Out[207]:
PULocationID        0
DOLocationID        0
trip_occurence      0
dist_lower_bound    0
dist_upper_bound    0
dtype: int64
In [208]:
for i in range(0,len(d2)):
    puid = d2.iloc[i,0]
    doid = d2.iloc[i,1]
    distl = d2.iloc[i,3]
    distu = d2.iloc[i,4]
    d2.loc[i,'Count_of_congestion_surcharge'] = df[(df.PULocationID == puid) & (df.DOLocationID == doid) & (df.trip_distance >= distl) & (df.trip_distance < distu) & (df.congestion_surcharge == 2.5)]['congestion_surcharge'].count()
In [209]:
# removing the duplicates
d3 = d2[d2.duplicated(subset= ['PULocationID', 'DOLocationID'], keep = False)]

d3.head(10)
Out[209]:
PULocationID DOLocationID trip_occurence dist_lower_bound dist_upper_bound Count_of_congestion_surcharge
34 7 138 2 2.0 4.0 0.0
35 7 138 1 0.0 2.0 0.0
52 10 114 1 14.0 16.0 1.0
53 10 114 1 16.0 18.0 1.0
59 10 162 2 13.0 15.0 2.0
60 10 162 1 17.0 19.0 1.0
61 10 162 0 15.0 17.0 0.0
62 10 163 3 13.0 15.0 2.0
63 10 163 1 15.0 17.0 2.0
72 10 230 1 13.0 15.0 1.0
In [210]:
# removing the trip_distance where the occurence is less than or equal to 1
d4 = d3[d3['trip_occurence']>1]
In [211]:
d4.isnull().sum()
Out[211]:
PULocationID                     0
DOLocationID                     0
trip_occurence                   0
dist_lower_bound                 0
dist_upper_bound                 0
Count_of_congestion_surcharge    0
dtype: int64
In [212]:
pairids = d3[d3['Count_of_congestion_surcharge'] == 0][['PULocationID', 'DOLocationID']]
In [213]:
pairids = pairids[pairids.duplicated(['PULocationID', 'DOLocationID'],keep = False)]
In [214]:
pairids.head()
Out[214]:
PULocationID DOLocationID
34 7 138
35 7 138
82 12 13
83 12 13
84 12 13
In [215]:
d4[(d4['PULocationID'] == 263) & (d4['DOLocationID'] == 249)]
Out[215]:
PULocationID DOLocationID trip_occurence dist_lower_bound dist_upper_bound Count_of_congestion_surcharge
9265 263 249 8 4.0 6.0 8.0
9266 263 249 2 6.0 8.0 2.0
In [216]:
d4[d4['Count_of_congestion_surcharge'] > d4['trip_occurence']]
Out[216]:
PULocationID DOLocationID trip_occurence dist_lower_bound dist_upper_bound Count_of_congestion_surcharge
162 13 79 29 4.0 6.0 30.0
203 13 144 5 2.0 4.0 6.0
219 13 170 14 6.0 8.0 15.0
240 13 233 13 6.0 8.0 14.0
491 43 43 4 2.0 4.0 5.0
... ... ... ... ... ... ...
9156 263 43 11 2.0 4.0 12.0
9165 263 74 41 2.0 4.0 43.0
9168 263 79 8 5.0 7.0 9.0
9186 263 132 2 19.0 21.0 3.0
9259 263 238 14 2.0 4.0 16.0

407 rows × 6 columns

In [217]:
d4[(d4['PULocationID'] == 12) & (d4['DOLocationID'] == 230)]
Out[217]:
PULocationID DOLocationID trip_occurence dist_lower_bound dist_upper_bound Count_of_congestion_surcharge
117 12 230 6 6.0 8.0 6.0
118 12 230 5 4.0 6.0 5.0
In [218]:
df[(df['PULocationID'] == 12) & (df['DOLocationID'] == 230)]
Out[218]:
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count trip_distance RatecodeID store_and_fwd_flag PULocationID DOLocationID payment_type fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee PU_Borough PU_Zone PU_service_zone DO_Borough DO_Zone DO_service_zone trip_duration_secs pickup_date dropoff_date pickup_hour drop_hour pickup_day dropoff_day
272912 2 2023-04-03 17:02:53 2023-04-03 17:29:30 2 4.84 1.0 N 12 230 2 28.2 2.5 0.5 0.00 0.0 1.0 34.70 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1597.0 2023-04-03 2023-04-03 17 17 Monday Monday
280277 2 2023-04-03 18:25:25 2023-04-03 18:50:41 3 6.39 1.0 N 12 230 1 32.4 2.5 0.5 7.78 0.0 1.0 46.68 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1516.0 2023-04-03 2023-04-03 18 18 Monday Monday
363201 2 2023-04-04 16:13:57 2023-04-04 16:45:22 1 6.45 1.0 N 12 230 1 36.6 2.5 0.5 0.00 0.0 1.0 43.10 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1885.0 2023-04-04 2023-04-04 16 16 Tuesday Tuesday
364072 1 2023-04-04 16:26:16 2023-04-04 17:02:59 4 8.60 1.0 N 12 230 1 40.1 2.5 0.5 1.00 0.0 1.0 47.60 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 2203.0 2023-04-04 2023-04-04 16 17 Tuesday Tuesday
579181 2 2023-04-06 16:54:59 2023-04-06 17:20:50 2 5.95 1.0 N 12 230 2 33.1 2.5 0.5 0.00 0.0 1.0 39.60 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1551.0 2023-04-06 2023-04-06 16 17 Thursday Thursday
579364 2 2023-04-06 16:16:57 2023-04-06 16:43:27 1 6.73 1.0 N 12 230 1 33.8 2.5 0.5 5.00 0.0 1.0 45.30 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1590.0 2023-04-06 2023-04-06 16 16 Thursday Thursday
579669 2 2023-04-06 16:32:37 2023-04-06 17:01:55 2 5.54 1.0 N 12 230 1 30.3 2.5 0.5 5.00 0.0 1.0 41.80 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1758.0 2023-04-06 2023-04-06 16 17 Thursday Thursday
581833 1 2023-04-06 16:41:15 2023-04-06 17:09:06 1 6.20 1.0 N 12 230 1 33.1 2.5 0.5 7.90 0.0 1.0 47.50 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1671.0 2023-04-06 2023-04-06 16 17 Thursday Thursday
582560 2 2023-04-06 16:59:38 2023-04-06 17:24:56 1 5.46 1.0 N 12 230 1 29.6 2.5 0.5 7.22 0.0 1.0 43.32 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1518.0 2023-04-06 2023-04-06 16 17 Thursday Thursday
585990 1 2023-04-06 17:46:16 2023-04-06 18:11:47 3 4.90 1.0 N 12 230 2 26.1 2.5 0.5 0.00 0.0 1.0 32.60 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1531.0 2023-04-06 2023-04-06 17 18 Thursday Thursday
686250 2 2023-04-07 16:30:59 2023-04-07 17:04:44 4 6.41 1.0 N 12 230 2 37.3 2.5 0.5 0.00 0.0 1.0 43.80 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 2025.0 2023-04-07 2023-04-07 16 17 Friday Friday
689086 1 2023-04-07 16:37:48 2023-04-07 17:02:13 1 6.30 1.0 N 12 230 2 31.0 2.5 0.5 0.00 0.0 1.0 37.50 2.5 0.0 Manhattan Battery Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 1465.0 2023-04-07 2023-04-07 16 17 Friday Friday
In [219]:
df[(df['PULocationID'] == 10) & (df['DOLocationID'] == 163)]
Out[219]:
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count trip_distance RatecodeID store_and_fwd_flag PULocationID DOLocationID payment_type fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee PU_Borough PU_Zone PU_service_zone DO_Borough DO_Zone DO_service_zone trip_duration_secs pickup_date dropoff_date pickup_hour drop_hour pickup_day dropoff_day
278127 2 2023-04-03 18:32:51 2023-04-03 19:10:38 2 15.00 2.0 N 10 163 1 70.0 5.0 0.5 17.11 6.55 1.0 102.66 2.5 0.0 Queens Baisley Park Boro Zone Manhattan Midtown North Yellow Zone 2267.0 2023-04-03 2023-04-03 18 19 Monday Monday
472871 1 2023-04-05 16:00:35 2023-04-05 17:04:05 1 15.10 2.0 N 10 163 1 70.0 5.0 0.5 17.10 6.55 1.0 102.65 2.5 0.0 Queens Baisley Park Boro Zone Manhattan Midtown North Yellow Zone 3810.0 2023-04-05 2023-04-05 16 17 Wednesday Wednesday
584206 2 2023-04-06 16:01:19 2023-04-06 16:59:32 4 14.01 2.0 N 10 163 1 70.0 5.0 0.5 17.11 6.55 1.0 102.66 2.5 0.0 Queens Baisley Park Boro Zone Manhattan Midtown North Yellow Zone 3493.0 2023-04-06 2023-04-06 16 16 Thursday Thursday
594638 1 2023-04-06 18:19:54 2023-04-06 19:00:10 1 13.70 2.0 N 10 163 1 70.0 5.0 0.5 15.00 6.55 1.0 100.55 2.5 0.0 Queens Baisley Park Boro Zone Manhattan Midtown North Yellow Zone 2416.0 2023-04-06 2023-04-06 18 19 Thursday Thursday
In [220]:
d4[(d4['PULocationID'] == 10) & (d4['DOLocationID'] == 163)]
Out[220]:
PULocationID DOLocationID trip_occurence dist_lower_bound dist_upper_bound Count_of_congestion_surcharge
62 10 163 3 13.0 15.0 2.0
In [221]:
df[(df['PULocationID'] == 263) & (df['DOLocationID'] == 249)]
Out[221]:
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count trip_distance RatecodeID store_and_fwd_flag PULocationID DOLocationID payment_type fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee PU_Borough PU_Zone PU_service_zone DO_Borough DO_Zone DO_service_zone trip_duration_secs pickup_date dropoff_date pickup_hour drop_hour pickup_day dropoff_day
269941 2 2023-04-03 17:49:13 2023-04-03 18:16:07 2 4.51 1.0 N 263 249 1 26.8 2.5 0.5 9.99 0.0 1.0 43.29 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1614.0 2023-04-03 2023-04-03 17 18 Monday Monday
370425 1 2023-04-04 17:33:09 2023-04-04 18:14:28 1 6.20 1.0 N 263 249 1 39.4 2.5 0.5 11.45 0.0 1.0 57.35 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 2479.0 2023-04-04 2023-04-04 17 18 Tuesday Tuesday
378896 2 2023-04-04 18:32:21 2023-04-04 18:53:14 1 5.57 1.0 N 263 249 1 27.5 2.5 0.5 5.10 0.0 1.0 39.10 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1253.0 2023-04-04 2023-04-04 18 18 Tuesday Tuesday
382281 2 2023-04-04 18:20:35 2023-04-04 18:50:03 1 6.87 1.0 N 263 249 1 34.5 2.5 0.5 2.00 0.0 1.0 43.00 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1768.0 2023-04-04 2023-04-04 18 18 Tuesday Tuesday
486378 2 2023-04-05 17:07:39 2023-04-05 17:39:39 2 4.73 1.0 N 263 249 1 30.3 2.5 0.5 7.36 0.0 1.0 44.16 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1920.0 2023-04-05 2023-04-05 17 17 Wednesday Wednesday
500765 1 2023-04-05 19:45:00 2023-04-05 20:13:49 1 4.90 1.0 N 263 249 1 28.2 2.5 0.5 6.90 0.0 1.0 41.60 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1729.0 2023-04-05 2023-04-05 19 20 Wednesday Wednesday
597773 2 2023-04-06 18:34:14 2023-04-06 19:01:51 4 4.69 1.0 N 263 249 1 27.5 2.5 0.5 6.80 0.0 1.0 40.80 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1657.0 2023-04-06 2023-04-06 18 19 Thursday Thursday
683524 2 2023-04-07 16:15:06 2023-04-07 16:41:45 1 4.33 1.0 N 263 249 1 25.4 2.5 0.5 1.10 0.0 1.0 33.00 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1599.0 2023-04-07 2023-04-07 16 16 Friday Friday
698233 1 2023-04-07 18:47:08 2023-04-07 19:10:11 2 9.60 1.0 N 263 249 1 39.4 2.5 0.5 9.15 0.0 1.0 55.05 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1383.0 2023-04-07 2023-04-07 18 19 Friday Friday
703936 2 2023-04-07 19:37:43 2023-04-07 20:01:51 1 5.35 1.0 N 263 249 1 28.2 2.5 0.5 6.94 0.0 1.0 41.64 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1448.0 2023-04-07 2023-04-07 19 20 Friday Friday
707019 2 2023-04-07 19:47:51 2023-04-07 20:07:38 1 4.46 1.0 N 263 249 1 22.6 2.5 0.5 5.82 0.0 1.0 34.92 2.5 0.0 Manhattan Yorkville West Yellow Zone Manhattan West Village Yellow Zone 1187.0 2023-04-07 2023-04-07 19 20 Friday Friday
In [226]:
counter = 0
OD_pairs = []
for i in range(0,len(uni_pairs)):
    start = uni_pairs.iloc[i,0]
    end = uni_pairs.iloc[i,1]
    filtered = d3[(d3.PULocationID == start) & (d3.DOLocationID == end)]
    filtered['Rankfilter'] = filtered.dist_upper_bound.rank()
    non_congested = filtered.Count_of_congestion_surcharge.min()
    filteredrank = filtered[filtered.Count_of_congestion_surcharge == non_congested].Rankfilter
    if filteredrank.iloc[0] == 1:
        continue
    else:
        print('Non-congested route:')
        print(filtered[filtered.Count_of_congestion_surcharge == non_congested].to_string())
        print()
        print('Congested route:')
        print(filtered[filtered.Rankfilter ==1].to_string())
        counter+=1
    OD_pairs.append((start,end))
Non-congested route:
    PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
34             7           138               2               2.0               4.0                            0.0         2.0
35             7           138               1               0.0               2.0                            0.0         1.0

Congested route:
    PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
35             7           138               1               0.0               2.0                            0.0         1.0
Non-congested route:
    PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
61            10           162               0              15.0              17.0                            0.0         2.0

Congested route:
    PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
59            10           162               2              13.0              15.0                            2.0         1.0
Non-congested route:
    PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
74            10           230               0              15.0              17.0                            0.0         2.0

Congested route:
    PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
72            10           230               1              13.0              15.0                            1.0         1.0
Non-congested route:
    PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
82            12            13               0               2.0               4.0                            0.0         2.0
83            12            13               0               4.0               6.0                            0.0         3.0
84            12            13               0               6.0               8.0                            0.0         4.0
85            12            13               0               8.0              10.0                            0.0         5.0
86            12            13               0              10.0              12.0                            0.0         6.0
87            12            13               0              12.0              14.0                            0.0         7.0
88            12            13               0              14.0              16.0                            0.0         8.0
89            12            13               0              16.0              18.0                            0.0         9.0
90            12            13               0              18.0              20.0                            0.0        10.0
91            12            13               0              20.0              22.0                            0.0        11.0
92            12            13               0              22.0              24.0                            0.0        12.0
93            12            13               0              24.0              26.0                            0.0        13.0
94            12            13               0              26.0              28.0                            0.0        14.0

Congested route:
    PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
80            12            13               2               0.0               2.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
119            12           230               1               8.0              10.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
118            12           230               5               4.0               6.0                            5.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
132            13             1               2              14.0              16.0                            0.0         2.0
133            13             1               1              12.0              14.0                            0.0         1.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
133            13             1               1              12.0              14.0                            0.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
137            13            13               1               2.0               4.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
136            13            13               4               0.0               2.0                            4.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
149            13            48               1               5.0               7.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
148            13            48              25               3.0               5.0                           25.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
158            13            68              22               3.0               5.0                           22.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
157            13            68              23               1.0               3.0                           23.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
165            13            87               2               2.0               4.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
164            13            87              24               0.0               2.0                           24.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
171            13           100               1               5.0               7.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
170            13           100              16               3.0               5.0                           16.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
174            13           107               1               6.0               8.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
173            13           107               8               2.0               4.0                            8.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
177            13           113               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
176            13           113               9               2.0               4.0                            9.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
179            13           114               4               3.0               5.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
178            13           114              20               1.0               3.0                           20.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
181            13           125               1               2.0               4.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
180            13           125              24               0.0               2.0                           24.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
188            13           132               0              23.0              25.0                            0.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
183            13           132               2              19.0              21.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
190            13           137               1               6.0               8.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
189            13           137               4               4.0               6.0                            4.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
195            13           138               0               6.0               8.0                            0.0         2.0
196            13           138               0               8.0              10.0                            0.0         3.0
197            13           138               0              10.0              12.0                            0.0         4.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
194            13           138               1               4.0               6.0                            1.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
204            13           144               2               4.0               6.0                            2.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
202            13           144              17               0.0               2.0                           16.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
207            13           148               2               5.0               7.0                            2.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
205            13           148              11               1.0               3.0                           11.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
213            13           162               3               7.0               9.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
212            13           162              22               5.0               7.0                           22.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
215            13           163               1               6.0               8.0                            1.0         2.0
216            13           163               1               8.0              10.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
214            13           163              10               4.0               6.0                           10.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
218            13           164               5               5.0               7.0                            5.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
217            13           164              23               3.0               5.0                           23.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
224            13           186               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
223            13           186              29               2.0               4.0                           29.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
227            13           209               3               2.0               4.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
226            13           209               5               0.0               2.0                            5.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
236            13           230               1               7.0               9.0                            2.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
234            13           230              24               3.0               5.0                           23.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
239            13           232               6               3.0               5.0                            6.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
238            13           232               7               1.0               3.0                            7.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
243            13           234               6               4.0               6.0                            6.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
242            13           234              29               2.0               4.0                           29.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
245            13           236               1               9.0              11.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
244            13           236              11               7.0               9.0                           10.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
247            13           237               2               8.0              10.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
246            13           237               5               6.0               8.0                            5.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
251            13           239               0               7.0               9.0                            0.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
249            13           239               9               5.0               7.0                            9.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
260            13           261               0               2.0               4.0                            0.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
258            13           261               6               0.0               2.0                            6.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
280            24            48               2               4.0               6.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
279            24            48               3               2.0               4.0                            3.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
307            24           164               0               6.0               8.0                            0.0         2.0
308            24           164               0               8.0              10.0                            0.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
305            24           164               1               4.0               6.0                            1.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
435            41           239               1               3.0               5.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
434            41           239               5               1.0               3.0                            5.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
442            41           263               1               3.0               5.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
441            41           263               7               1.0               3.0                            4.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
480            43            24               1               3.0               5.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
479            43            24              11               1.0               3.0                           10.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
489            43            42               1               5.0               7.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
488            43            42               4               1.0               3.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
491            43            43               4               2.0               4.0                            5.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
490            43            43              84               0.0               2.0                           82.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
494            43            48              36               2.0               4.0                           37.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
493            43            48              44               0.0               2.0                           43.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
498            43            50               1               4.0               6.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
497            43            50               6               0.0               2.0                            6.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
505            43            68               1               5.0               7.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
503            43            68              21               1.0               3.0                           20.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
511            43            75              10               2.0               4.0                           10.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
510            43            75              15               0.0               2.0                           11.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
513            43            79              10               4.0               6.0                            9.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
512            43            79              10               2.0               4.0                           10.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
515            43            87               1               8.0              10.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
514            43            87               8               6.0               8.0                            8.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
522            43            95               0               9.0              11.0                            0.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
520            43            95               1               7.0               9.0                            1.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
525            43           100               4               3.0               5.0                            5.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
524            43           100              35               1.0               3.0                           34.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
527            43           107               6               3.0               5.0                            8.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
526            43           107              12               1.0               3.0                           10.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
531            43           113               2               6.0               8.0                            2.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
529            43           113              28               2.0               4.0                           28.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
533            43           114               3               4.0               6.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
532            43           114              12               2.0               4.0                           12.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
535            43           116               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
534            43           116               2               2.0               4.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
537            43           125               1               5.0               7.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
536            43           125               2               3.0               5.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
542            43           137               2               3.0               5.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
541            43           137               4               1.0               3.0                            4.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
544            43           138               1              10.0              12.0                            1.0         2.0
545            43           138               1              12.0              14.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
543            43           138               6               8.0              10.0                            5.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
547            43           140               1               3.0               5.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
546            43           140              30               1.0               3.0                           30.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
549            43           141               5               2.0               4.0                            5.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
548            43           141              82               0.0               2.0                           82.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
551            43           142              25               2.0               4.0                           25.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
550            43           142             126               0.0               2.0                          126.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
553            43           143              17               2.0               4.0                           17.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
552            43           143              65               0.0               2.0                           65.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
555            43           144               2               5.0               7.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
554            43           144              12               3.0               5.0                           12.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
557            43           148               2               5.0               7.0                            2.0         2.0
558            43           148               2               7.0               9.0                            2.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
556            43           148               7               3.0               5.0                            7.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
565            43           158               3               6.0               8.0                            3.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
563            43           158               7               2.0               4.0                            6.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
567            43           161              23               2.0               4.0                           26.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
566            43           161             143               0.0               2.0                          139.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
569            43           162              22               2.0               4.0                           24.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
568            43           162              53               0.0               2.0                           51.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
572            43           163               1               4.0               6.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
570            43           163              71               0.0               2.0                           71.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
574            43           164               7               3.0               5.0                            7.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
573            43           164              74               1.0               3.0                           74.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
576            43           166               6               3.0               5.0                            5.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
575            43           166              22               1.0               3.0                           16.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
579            43           170               4               3.0               5.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
578            43           170              48               1.0               3.0                           48.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
584            43           186               1               5.0               7.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
582            43           186              35               1.0               3.0                           34.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
589            43           211               1               7.0               9.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
587            43           211               7               3.0               5.0                            7.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
595            43           229              14               2.0               4.0                           13.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
594            43           229              29               0.0               2.0                           29.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
597            43           230              41               2.0               4.0                           47.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
596            43           230              88               0.0               2.0                           82.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
600            43           231               3               7.0               9.0                            3.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
598            43           231               5               3.0               5.0                            5.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
602            43           232               1               8.0              10.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
601            43           232               3               6.0               8.0                            3.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
604            43           233               5               3.0               5.0                            5.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
603            43           233              23               1.0               3.0                           23.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
607            43           234               1               5.0               7.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
605            43           234              26               1.0               3.0                           26.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
610            43           236              13               2.0               4.0                           14.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
609            43           236             115               0.0               2.0                          113.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
612            43           237               9               2.0               4.0                           13.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
611            43           237             142               0.0               2.0                          138.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
614            43           238              11               2.0               4.0                           12.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
613            43           238              80               0.0               2.0                           74.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
616            43           239              10               2.0               4.0                           11.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
615            43           239             128               0.0               2.0                          127.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
622            43           246               1               5.0               7.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
621            43           246              16               1.0               3.0                           15.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
625            43           249               3               4.0               6.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
624            43           249              13               2.0               4.0                           13.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
632            43           261               0               6.0               8.0                            0.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
631            43           261               1               4.0               6.0                            1.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
634            43           262              14               2.0               4.0                           15.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
633            43           262              28               0.0               2.0                           27.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
636            43           263               9               2.0               4.0                           10.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
635            43           263              39               0.0               2.0                           38.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
644            45            45               0               2.0               4.0                            0.0         2.0
645            45            45               0               4.0               6.0                            0.0         3.0
646            45            45               0               6.0               8.0                            0.0         4.0
647            45            45               0               8.0              10.0                            0.0         5.0
648            45            45               0              10.0              12.0                            0.0         6.0
649            45            45               0              12.0              14.0                            0.0         7.0
650            45            45               0              14.0              16.0                            0.0         8.0
651            45            45               0              16.0              18.0                            0.0         9.0
652            45            45               0              18.0              20.0                            0.0        10.0
653            45            45               0              20.0              22.0                            0.0        11.0
654            45            45               0              22.0              24.0                            0.0        12.0
655            45            45               0              24.0              26.0                            0.0        13.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
642            45            45               2               0.0               2.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
665            45            87               0               2.0               4.0                            0.0         2.0
666            45            87               0               4.0               6.0                            0.0         3.0
667            45            87               0               6.0               8.0                            0.0         4.0
668            45            87               0               8.0              10.0                            0.0         5.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
663            45            87               6               0.0               2.0                            6.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
670            45            88               1               3.0               5.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
669            45            88               2               1.0               3.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
674            45           100               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
673            45           100               5               2.0               4.0                            5.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
681            45           132               0              15.0              17.0                            0.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
679            45           132               1              13.0              15.0                            1.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
689            45           161               2               5.0               7.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
688            45           161               3               3.0               5.0                            3.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
693            45           163               1               5.0               7.0                            1.0         2.0
694            45           163               1               7.0               9.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
692            45           163               2               3.0               5.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
696            45           164               1               4.0               6.0                            1.0         2.0
697            45           164               1               6.0               8.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
695            45           164               5               2.0               4.0                            5.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
702            45           186               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
701            45           186               7               2.0               4.0                            6.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
708            45           230               4               5.0               7.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
707            45           230              12               3.0               5.0                           12.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
714            45           236               1               8.0              10.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
713            45           236               3               6.0               8.0                            3.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
737            48            41               3               5.0               7.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
736            48            41              14               3.0               5.0                           14.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
739            48            42               4               6.0               8.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
738            48            42               8               4.0               6.0                            8.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
741            48            43              13               2.0               4.0                           15.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
740            48            43              29               0.0               2.0                           27.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
744            48            48               3               2.0               4.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
743            48            48             112               0.0               2.0                          112.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
752            48            68               0               4.0               6.0                            0.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
749            48            68             183               0.0               2.0                          183.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
755            48            74               0               6.0               8.0                            0.0         2.0
756            48            74               0               8.0              10.0                            0.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
753            48            74               2               4.0               6.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
758            48            75               3               4.0               6.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
757            48            75              10               2.0               4.0                           10.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
762            48            87               5               6.0               8.0                            6.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
761            48            87              12               4.0               6.0                           11.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
765            48            90              11               2.0               4.0                           12.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
764            48            90              30               0.0               2.0                           29.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
772            48           107               4               3.0               5.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
771            48           107              23               1.0               3.0                           23.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
774            48           113               4               3.0               5.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
773            48           113              18               1.0               3.0                           18.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
776            48           114               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
775            48           114              19               2.0               4.0                           19.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
778            48           116               2               6.0               8.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
777            48           116               3               4.0               6.0                            3.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
785            48           132               2              20.0              22.0                            2.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
783            48           132              27              16.0              18.0                           27.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
787            48           137               4               3.0               5.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
786            48           137              10               1.0               3.0                           10.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
793            48           138               0               3.0               5.0                            0.0         2.0
794            48           138               0               5.0               7.0                            0.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
791            48           138               1               1.0               3.0                            1.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
796            48           140               2               3.0               5.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
795            48           140              17               1.0               3.0                           17.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
798            48           141               2               3.0               5.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
797            48           141              51               1.0               3.0                           50.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
800            48           142               3               2.0               4.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
799            48           142             164               0.0               2.0                          163.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
802            48           143               4               2.0               4.0                            5.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
801            48           143             106               0.0               2.0                          105.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
804            48           144               2               4.0               6.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
803            48           144              15               2.0               4.0                           15.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
807            48           148               1               5.0               7.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
806            48           148              14               3.0               5.0                           14.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
809            48           151               2               4.0               6.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
808            48           151              23               2.0               4.0                           23.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
812            48           158               3               3.0               5.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
811            48           158              27               1.0               3.0                           27.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
816            48           163               2               2.0               4.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
815            48           163              74               0.0               2.0                           74.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
818            48           164               4               2.0               4.0                            4.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
817            48           164              58               0.0               2.0                           58.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
820            48           166               1               5.0               7.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
819            48           166              11               3.0               5.0                           11.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
822            48           170               7               2.0               4.0                            7.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
821            48           170              58               0.0               2.0                           57.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
826            48           186               2               2.0               4.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
825            48           186              85               0.0               2.0                           85.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
833            48           211               2               4.0               6.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
832            48           211              16               2.0               4.0                           16.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
836            48           224               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
835            48           224               4               2.0               4.0                            4.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
840            48           229               3               2.0               4.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
839            48           229              40               0.0               2.0                           40.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
842            48           230               1               2.0               4.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
841            48           230              81               0.0               2.0                           81.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
845            48           232               2               6.0               8.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
844            48           232               4               4.0               6.0                            4.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
848            48           234              22               2.0               4.0                           24.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
847            48           234              34               0.0               2.0                           32.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
850            48           236              22               3.0               5.0                           22.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
849            48           236              35               1.0               3.0                           35.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
852            48           237              28               2.0               4.0                           30.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
851            48           237              47               0.0               2.0                           45.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
854            48           238               6               3.0               5.0                            8.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
853            48           238              84               1.0               3.0                           82.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
856            48           239              17               2.0               4.0                           20.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
855            48           239             102               0.0               2.0                           99.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
859            48           244               1               7.0               9.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
858            48           244               4               5.0               7.0                            4.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
861            48           246              18               2.0               4.0                           18.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
860            48           246             119               0.0               2.0                          119.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
863            48           247               1              10.0              12.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
862            48           247               2               8.0              10.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
865            48           249               1               3.0               5.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
864            48           249              54               1.0               3.0                           54.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
870            48           256               0               9.0              11.0                            0.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
867            48           256               2               5.0               7.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
877            48           262               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
876            48           262              11               2.0               4.0                           11.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
879            48           263               2               4.0               6.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
878            48           263              24               2.0               4.0                           24.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
896            50            48               2               2.0               4.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
895            50            48              52               0.0               2.0                           52.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
901            50            68              10               2.0               4.0                           10.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
900            50            68              45               0.0               2.0                           45.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
904            50            79               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
903            50            79               3               2.0               4.0                            3.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
909            50           100               1               2.0               4.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
908            50           100              20               0.0               2.0                           20.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
918            50           132               1              19.0              21.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
917            50           132               2              17.0              19.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
922            50           141               2               3.0               5.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
921            50           141              13               1.0               3.0                           13.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
930            50           158               2               3.0               5.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
929            50           158               9               1.0               3.0                            8.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
932            50           161               1               2.0               4.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
931            50           161              27               0.0               2.0                           26.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
935            50           163               1               2.0               4.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
934            50           163              23               0.0               2.0                           23.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
937            50           164               3               2.0               4.0                            3.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
936            50           164              11               0.0               2.0                           11.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
944            50           186               1               4.0               6.0                            1.0         3.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
942            50           186              21               0.0               2.0                           21.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
956            50           231               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
955            50           231               2               2.0               4.0                            2.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
960            50           234               2               3.0               5.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
959            50           234              13               1.0               3.0                           13.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
962            50           236               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
961            50           236              13               2.0               4.0                           13.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
965            50           238               2               3.0               5.0                            2.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
964            50           238              20               1.0               3.0                           20.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
967            50           239               4               2.0               4.0                            7.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
966            50           239              24               0.0               2.0                           21.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
971            50           246               4               2.0               4.0                            5.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
970            50           246              51               0.0               2.0                           50.0         1.0
Non-congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
976            50           263               1               4.0               6.0                            1.0         2.0

Congested route:
     PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
975            50           263               7               2.0               4.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1006            65           113               0               4.0               6.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1004            65           113               4               2.0               4.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1066            68             1               4              15.0              17.0                            0.0         2.0
1067            68             1               4              17.0              19.0                            0.0         3.0
1068            68             1               3              13.0              15.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1068            68             1               3              13.0              15.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1073            68            13               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1072            68            13              35               2.0               4.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1078            68            25               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1077            68            25               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1088            68            41               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1086            68            41               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1092            68            43               3               4.0               6.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1091            68            43               4               0.0               2.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1095            68            45               2               5.0               7.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1094            68            45               5               1.0               3.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1097            68            48              15               2.0               4.0                           17.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1096            68            48             171               0.0               2.0                          169.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1101            68            50               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1100            68            50              64               0.0               2.0                           64.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1109            68            66               0               7.0               9.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1107            68            66               1               3.0               5.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1111            68            68               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1110            68            68             114               0.0               2.0                          114.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1117            68            79              11               3.0               5.0                           11.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1116            68            79              67               1.0               3.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1120            68            87               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1119            68            87              32               3.0               5.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1123            68            88               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1121            68            88               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1127            68            97               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1126            68            97               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1129            68           100               1               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1128            68           100              57               0.0               2.0                           55.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1132            68           107               7               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1131            68           107              72               0.0               2.0                           72.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1135            68           113              15               2.0               4.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1134            68           113              74               0.0               2.0                           71.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1137            68           114              28               2.0               4.0                           28.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1136            68           114              42               0.0               2.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1141            68           125              10               2.0               4.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1140            68           125              16               0.0               2.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1146            68           132               1              18.0              20.0                            1.0         2.0
1147            68           132               1              20.0              22.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1145            68           132              15              16.0              18.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1150            68           137               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1149            68           137              23               1.0               3.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1154            68           138               0              12.0              14.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1151            68           138               9              10.0              12.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1158            68           141               5               4.0               6.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1157            68           141              19               2.0               4.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1160            68           142               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1159            68           142              82               1.0               3.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1162            68           143               4               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1161            68           143              64               1.0               3.0                           62.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1164            68           144               8               3.0               5.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1163            68           144              39               1.0               3.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1166            68           145               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1165            68           145               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1169            68           148               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1168            68           148              33               2.0               4.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1171            68           151               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1170            68           151              13               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1176            68           158               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1175            68           158              90               0.0               2.0                           89.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1178            68           161              37               2.0               4.0                           41.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1177            68           161              85               0.0               2.0                           81.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1180            68           162               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1179            68           162              68               1.0               3.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1182            68           163               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1181            68           163              87               1.0               3.0                           87.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1184            68           164               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1183            68           164              83               0.0               2.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1191            68           170              20               2.0               4.0                           21.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1190            68           170              70               0.0               2.0                           69.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1205            68           211               2               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1204            68           211              38               1.0               3.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1214            68           228               0               8.0              10.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1212            68           228               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1216            68           229              13               3.0               5.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1215            68           229              30               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1218            68           230              38               2.0               4.0                           41.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1217            68           230             133               0.0               2.0                          130.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1220            68           231              27               3.0               5.0                           29.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1219            68           231              53               1.0               3.0                           51.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1222            68           232               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1221            68           232               8               2.0               4.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1225            68           234               7               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1224            68           234             142               0.0               2.0                          140.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1228            68           236               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1226            68           236              39               2.0               4.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1232            68           238              10               4.0               6.0                           11.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1231            68           238              33               2.0               4.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1235            68           239               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1233            68           239              52               1.0               3.0                           48.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1237            68           243               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1236            68           243               4               8.0              10.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1240            68           246               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1239            68           246             117               0.0               2.0                          117.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1242            68           249               9               2.0               4.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1241            68           249             151               0.0               2.0                          150.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1246            68           255               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1244            68           255               1               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1248            68           256               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1247            68           256               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1254            68           261               2               6.0               8.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1252            68           261               9               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1256            68           262               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1255            68           262              22               3.0               5.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1258            68           263               4               5.0               7.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1257            68           263              33               3.0               5.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1281            70            42               1               8.0              10.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1280            70            42               4               6.0               8.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1285            70            48               5              11.0              13.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1284            70            48               6               9.0              11.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1300            70            68               0              10.0              12.0                            0.0         2.0
1301            70            68               0              12.0              14.0                            0.0         3.0
1302            70            68               0              14.0              16.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1298            70            68               5               8.0              10.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1313            70            79               0              10.0              12.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1311            70            79               2               8.0              10.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1319            70            87               1              13.0              15.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1318            70            87               4              11.0              13.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1329            70           100               1              12.0              14.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1327            70           100               5               8.0              10.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1333            70           107               4              10.0              12.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1332            70           107               5               8.0              10.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1355            70           142               1              11.0              13.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1354            70           142              11               9.0              11.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1358            70           144               1              11.0              13.0                            1.0         2.0
1359            70           144               1              13.0              15.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1357            70           144               4               9.0              11.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1363            70           148               0              11.0              13.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1361            70           148               2               9.0              11.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1373            70           162               6              10.0              12.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1372            70           162              10               8.0              10.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1378            70           164               3              10.0              12.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1377            70           164               8               8.0              10.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1380            70           166               1               9.0              11.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1379            70           166               3               7.0               9.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1384            70           170               4               9.0              11.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1383            70           170               7               7.0               9.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1406            70           211               1              11.0              13.0                            1.0         2.0
1407            70           211               1              13.0              15.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1405            70           211               5               9.0              11.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1416            70           224               1              11.0              13.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1415            70           224               2               9.0              11.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1420            70           229               2              10.0              12.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1419            70           229               5               8.0              10.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1423            70           230               1              12.0              14.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1421            70           230              16               8.0              10.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1429            70           233               5               9.0              11.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1428            70           233               9               7.0               9.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1432            70           234               0              10.0              12.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1430            70           234               6               8.0              10.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1438            70           239               5              10.0              12.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1437            70           239              10               8.0              10.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1465            74            42               4               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1464            74            42               5               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1489            74           141               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1488            74           141               4               1.0               3.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1524            74           262               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1523            74           262               7               1.0               3.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1526            74           263               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1525            74           263              18               0.0               2.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1534            75            41               4               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1533            75            41              23               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1535            75            42              12               2.0               4.0                            0.0         2.0
1536            75            42               4               0.0               2.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1536            75            42               4               0.0               2.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1538            75            43               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1537            75            43              11               0.0               2.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1545            75            74               1               2.0               4.0                            0.0         2.0
1546            75            74               1               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1544            75            74              71               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1548            75            75               1               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1547            75            75              31               0.0               2.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1553            75            90               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1552            75            90               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1569            75           140               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1568            75           140              15               1.0               3.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1581            75           162               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1580            75           162               4               1.0               3.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1590            75           186               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1589            75           186               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1598            75           233               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1597            75           233               5               2.0               4.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1603            75           238               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1602            75           238              47               0.0               2.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1605            75           239              14               2.0               4.0                           14.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1604            75           239              18               0.0               2.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1612            75           262               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1611            75           262              21               0.0               2.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1623            79            25               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1622            79            25               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1629            79            43               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1628            79            43               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1631            79            45               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1630            79            45              15               0.0               2.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1633            79            48               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1632            79            48              14               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1636            79            50               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1635            79            50               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1645            79            68               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1644            79            68              35               1.0               3.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1650            79            79               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1649            79            79              57               0.0               2.0                           57.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1657            79            90               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1656            79            90              34               0.0               2.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1660            79            97               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1659            79            97               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1663            79           107               1               2.0               4.0                            1.0         2.0
1664            79           107               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1662            79           107              88               0.0               2.0                           88.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1666            79           112               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1665            79           112               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1669            79           114               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1668            79           114              58               0.0               2.0                           58.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1674            79           132               1              19.0              21.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1673            79           132               4              15.0              17.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1676            79           137               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1675            79           137              42               0.0               2.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1678            79           138               1              11.0              13.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1677            79           138               4               9.0              11.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1680            79           140               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1679            79           140              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1692            79           161               4               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1691            79           161              23               1.0               3.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1694            79           162               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1693            79           162              49               1.0               3.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1696            79           163               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1695            79           163              27               2.0               4.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1698            79           164              12               2.0               4.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1697            79           164              28               0.0               2.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1700            79           170               8               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1699            79           170              73               0.0               2.0                           72.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1703            79           181               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1702            79           181               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1716            79           229               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1715            79           229              43               1.0               3.0                           43.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1719            79           230               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1717            79           230              42               2.0               4.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1722            79           231               0               3.0               5.0                            0.0         2.0
1723            79           231               0               5.0               7.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1720            79           231              27               1.0               3.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1725            79           232               2               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1724            79           232              39               0.0               2.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1728            79           234               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1727            79           234              64               0.0               2.0                           64.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1730            79           236               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1729            79           236              13               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1732            79           237               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1731            79           237              26               2.0               4.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1734            79           238               4               6.0               8.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1733            79           238              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1736            79           239               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1735            79           239              19               4.0               6.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1739            79           246               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1738            79           246              16               1.0               3.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1741            79           249               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1740            79           249              77               0.0               2.0                           76.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1745            79           255               0               6.0               8.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1742            79           255               1               2.0               4.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1749            79           261               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1748            79           261               7               1.0               3.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1752            79           263               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1751            79           263              18               3.0               5.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1772            87            17               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1771            87            17               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1775            87            33               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1774            87            33              10               1.0               3.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1786            87            50               2               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1785            87            50               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1791            87            66               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1790            87            66               4               1.0               3.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1795            87            68               0               6.0               8.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1792            87            68               9               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1800            87            79              22               3.0               5.0                           22.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1799            87            79              24               1.0               3.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1804            87            87               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1803            87            87               6               0.0               2.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1808            87            90               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1807            87            90               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1819            87           114               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1818            87           114              17               1.0               3.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1825            87           132               0              16.0              18.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1822            87           132               3              14.0              16.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1836            87           148               9               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1835            87           148              32               0.0               2.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1843            87           163               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1842            87           163               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1845            87           164               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1844            87           164              12               3.0               5.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1849            87           170               4               5.0               7.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1848            87           170              20               3.0               5.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1853            87           186               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1852            87           186              14               3.0               5.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1857            87           211               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1856            87           211              13               1.0               3.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1859            87           224               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1858            87           224               8               2.0               4.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1862            87           226               0               9.0              11.0                            0.0         2.0
1863            87           226               0              11.0              13.0                            0.0         3.0
1864            87           226               0              13.0              15.0                            0.0         4.0
1865            87           226               0              15.0              17.0                            0.0         5.0
1866            87           226               0              17.0              19.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1860            87           226               2               7.0               9.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1869            87           229               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1868            87           229              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1873            87           231               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1872            87           231              51               0.0               2.0                           51.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1876            87           232               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1874            87           232              19               0.0               2.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1883            87           238               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1882            87           238               5               6.0               8.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1887            87           246               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1886            87           246               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1889            87           249               2               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1888            87           249              12               1.0               3.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1895            87           261               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1894            87           261              12               0.0               2.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1897            87           262               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1896            87           262               7               6.0               8.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1899            87           263               2               8.0              10.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1898            87           263              11               6.0               8.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1910            88            48               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1909            88            48              13               4.0               6.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1925            88           113               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1924            88           113               7               2.0               4.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1935            88           138               1              15.0              17.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1934            88           138               3              11.0              13.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1941            88           143               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1940            88           143               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1943            88           144               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1942            88           144              13               1.0               3.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1946            88           148               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1945            88           148              15               1.0               3.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1950            88           161               1               7.0               9.0                            1.0         2.0
1951            88           161               1               9.0              11.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1949            88           161              13               5.0               7.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1961            88           186               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1960            88           186               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1973            88           232               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1972            88           232              10               1.0               3.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1983            88           246               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1982            88           246              14               3.0               5.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1985            88           249               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1984            88           249              14               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1992            88           263               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1991            88           263               4               6.0               8.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1995            90             1               2              16.0              18.0                            0.0         2.0
1996            90             1               2              18.0              20.0                            0.0         3.0
1997            90             1               1              14.0              16.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
1997            90             1               1              14.0              16.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2012            90            43               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2011            90            43               3               2.0               4.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2015            90            48              12               2.0               4.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2014            90            48              65               0.0               2.0                           64.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2018            90            50               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2017            90            50              30               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2025            90            75               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2024            90            75               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2027            90            79               6               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2026            90            79              57               0.0               2.0                           55.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2035            90            90               1               2.0               4.0                            1.0         2.0
2036            90            90               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2034            90            90              16               0.0               2.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2042            90           112               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2041            90           112               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2045            90           114               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2044            90           114              52               0.0               2.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2051            90           132               1              19.0              21.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2050            90           132               9              15.0              17.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2054            90           138               1              11.0              13.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2053            90           138               6               9.0              11.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2056            90           140               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2055            90           140              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2058            90           141               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2057            90           141              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2060            90           142              10               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2059            90           142              29               1.0               3.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2075            90           166               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2074            90           166               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2077            90           170               4               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2076            90           170              84               0.0               2.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2080            90           181               1               8.0              10.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2078            90           181               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2087            90           211               2               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2086            90           211              30               0.0               2.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2092            90           224               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2091            90           224               9               0.0               2.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2095            90           229               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2094            90           229              22               1.0               3.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2097            90           230               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2096            90           230              84               0.0               2.0                           84.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2100            90           232               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2099            90           232              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2103            90           234               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2102            90           234              59               0.0               2.0                           59.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2105            90           236               8               4.0               6.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2104            90           236              17               2.0               4.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2107            90           237               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2106            90           237              28               2.0               4.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2109            90           238               1               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2108            90           238              13               3.0               5.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2111            90           239               6               4.0               6.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2110            90           239              23               2.0               4.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2115            90           246               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2114            90           246             113               0.0               2.0                          113.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2120            90           261               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2119            90           261               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2122            90           262               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2121            90           262              15               3.0               5.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2162           100            13               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2161           100            13              21               3.0               5.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2165           100            24               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2164           100            24               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2173           100            41               5               5.0               7.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2172           100            41               9               3.0               5.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2175           100            42               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2174           100            42               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2178           100            43               1               4.0               6.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2176           100            43              13               0.0               2.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2182           100            48               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2181           100            48              79               0.0               2.0                           79.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2185           100            50               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2184           100            50              43               0.0               2.0                           43.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2190           100            65               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2189           100            65               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2192           100            66               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2191           100            66               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2198           100            79               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2197           100            79              28               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2204           100            90               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2203           100            90              78               0.0               2.0                           78.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2206           100            95               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2205           100            95               2               8.0              10.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2209           100           100               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2208           100           100              15               0.0               2.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2215           100           114               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2214           100           114              25               1.0               3.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2222           100           132               1              19.0              21.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2220           100           132              20              15.0              17.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2224           100           137               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2223           100           137              18               0.0               2.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2226           100           138               4              11.0              13.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2225           100           138              13               9.0              11.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2229           100           141               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2228           100           141              40               1.0               3.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2231           100           142              16               2.0               4.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2230           100           142              58               0.0               2.0                           56.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2235           100           144               0               4.0               6.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2233           100           144              18               2.0               4.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2237           100           145               1               4.0               6.0                            1.0         2.0
2238           100           145               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2236           100           145               3               2.0               4.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2241           100           148               5               4.0               6.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2240           100           148              17               2.0               4.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2246           100           158               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2245           100           158              23               1.0               3.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2248           100           161               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2247           100           161             124               0.0               2.0                          124.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2251           100           162               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2249           100           162              89               0.0               2.0                           88.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2253           100           163               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2252           100           163              98               0.0               2.0                           98.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2255           100           164               1              20.0              22.0                            0.0        11.0
2256           100           164               0               2.0               4.0                            0.0         2.0
2257           100           164               0               4.0               6.0                            0.0         3.0
2258           100           164               0               6.0               8.0                            0.0         4.0
2259           100           164               0               8.0              10.0                            0.0         5.0
2260           100           164               0              10.0              12.0                            0.0         6.0
2261           100           164               0              12.0              14.0                            0.0         7.0
2262           100           164               0              14.0              16.0                            0.0         8.0
2263           100           164               0              16.0              18.0                            0.0         9.0
2264           100           164               0              18.0              20.0                            0.0        10.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2254           100           164              54               0.0               2.0                           54.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2268           100           166               0               7.0               9.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2265           100           166               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2273           100           181               1               9.0              11.0                            1.0         2.0
2274           100           181               1              11.0              13.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2272           100           181               5               7.0               9.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2282           100           209               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2281           100           209               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2289           100           229              17               2.0               4.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2288           100           229              50               0.0               2.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2292           100           231               1               6.0               8.0                            1.0         3.0
2293           100           231               0               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2291           100           231              35               2.0               4.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2296           100           232               0               5.0               7.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2294           100           232               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2298           100           233               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2297           100           233              52               0.0               2.0                           51.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2300           100           234               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2299           100           234              82               0.0               2.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2305           100           238               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2304           100           238              32               2.0               4.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2312           100           246               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2311           100           246              68               0.0               2.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2314           100           249               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2313           100           249              52               1.0               3.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2318           100           261               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2316           100           261               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2321           100           263               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2320           100           263              18               2.0               4.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2330           107            13               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2329           107            13               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2336           107            33               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2335           107            33               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2346           107            43               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2345           107            43              11               2.0               4.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2348           107            45               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2347           107            45               5               1.0               3.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2350           107            48               3               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2349           107            48              19               1.0               3.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2354           107            66               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2353           107            66               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2356           107            68               2               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2355           107            68              52               0.0               2.0                           51.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2359           107            74               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2358           107            74               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2361           107            75               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2360           107            75              13               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2367           107            87               6               4.0               6.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2366           107            87               7               2.0               4.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2375           107           100               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2374           107           100              28               0.0               2.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2378           107           107               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2377           107           107              25               0.0               2.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2381           107           114               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2380           107           114              76               0.0               2.0                           75.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2384           107           125               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2383           107           125              10               0.0               2.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2389           107           132               2              18.0              20.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2388           107           132               4              14.0              16.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2392           107           137               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2391           107           137              65               0.0               2.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2395           107           140              13               3.0               5.0                           14.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2394           107           140              29               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2397           107           141              11               3.0               5.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2396           107           141              47               1.0               3.0                           46.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2402           107           144               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2401           107           144              40               0.0               2.0                           40.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2406           107           148               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2405           107           148              39               0.0               2.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2412           107           162               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2411           107           162              95               0.0               2.0                           95.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2414           107           163               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2413           107           163              42               1.0               3.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2419           107           170               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2418           107           170             203               0.0               2.0                          203.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2423           107           181               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2422           107           181               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2428           107           211               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2427           107           211              26               0.0               2.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2435           107           230               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2434           107           230              43               1.0               3.0                           43.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2437           107           231               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2436           107           231              30               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2440           107           233               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2439           107           233              90               0.0               2.0                           90.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2443           107           236               4               4.0               6.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2442           107           236              45               2.0               4.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2445           107           237               9               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2444           107           237              62               1.0               3.0                           61.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2447           107           238               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2446           107           238              11               4.0               6.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2449           107           239               2               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2448           107           239              22               3.0               5.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2454           107           246               0               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2451           107           246              23               0.0               2.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2456           107           249               5               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2455           107           249              93               0.0               2.0                           92.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2458           107           255               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2457           107           255               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2464           107           262               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2463           107           262              28               3.0               5.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2466           107           263               4               4.0               6.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2465           107           263              33               2.0               4.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2479           113            33               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2478           113            33               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2486           113            43               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2485           113            43               8               2.0               4.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2489           113            48               6               3.0               5.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2488           113            48              29               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2497           113            66               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2496           113            66               3               2.0               4.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2499           113            68              15               2.0               4.0                           17.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2498           113            68              58               0.0               2.0                           56.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2505           113            88               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2504           113            88               4               2.0               4.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2507           113            90               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2506           113            90              43               0.0               2.0                           43.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2513           113           113               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2512           113           113              18               0.0               2.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2517           113           125               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2516           113           125              16               0.0               2.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2519           113           132               4              18.0              20.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2518           113           132               6              16.0              18.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2522           113           137               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2521           113           137              25               0.0               2.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2526           113           141               3               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2525           113           141              14               2.0               4.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2528           113           142               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2527           113           142              21               2.0               4.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2534           113           148               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2533           113           148              46               0.0               2.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2538           113           161               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2537           113           161              43               1.0               3.0                           43.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2543           113           164               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2542           113           164              49               0.0               2.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2547           113           170              13               2.0               4.0                           17.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2546           113           170              73               0.0               2.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2551           113           186               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2550           113           186              66               0.0               2.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2561           113           230               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2560           113           230              71               1.0               3.0                           71.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2563           113           231               8               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2562           113           231              62               0.0               2.0                           61.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2566           113           233               7               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2565           113           233              10               0.0               2.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2568           113           234               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2567           113           234              92               0.0               2.0                           92.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2572           113           237               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2571           113           237              35               2.0               4.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2575           113           239               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2574           113           239              16               3.0               5.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2578           113           246               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2577           113           246              34               1.0               3.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2580           113           249               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2579           113           249              59               0.0               2.0                           59.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2585           113           261               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2584           113           261              11               1.0               3.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2587           113           262               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2586           113           262               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2589           113           263               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2588           113           263              10               3.0               5.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2592           114             4               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2591           114             4               8               0.0               2.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2594           114            13               1               3.0               5.0                            1.0         2.0
2595           114            13               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2593           114            13              12               1.0               3.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2603           114            48               3               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2602           114            48              20               2.0               4.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2611           114            68              15               2.0               4.0                           15.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2610           114            68              29               0.0               2.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2617           114            87               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2616           114            87              14               1.0               3.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2630           114           137               2               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2629           114           137              11               0.0               2.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2633           114           138               0               2.0               4.0                            0.0         2.0
2634           114           138               0               4.0               6.0                            0.0         3.0
2635           114           138               0               6.0               8.0                            0.0         4.0
2636           114           138               0               8.0              10.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2631           114           138               1               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2644           114           148               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2643           114           148              31               0.0               2.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2652           114           164               5               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2651           114           164              35               0.0               2.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2657           114           181               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2655           114           181               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2659           114           186              15               2.0               4.0                           20.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2658           114           186              36               0.0               2.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2667           114           229               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2666           114           229              22               2.0               4.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2669           114           230               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2668           114           230              37               2.0               4.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2672           114           231               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2670           114           231              57               0.0               2.0                           56.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2674           114           232               1               2.0               4.0                            1.0         2.0
2675           114           232               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2673           114           232               9               0.0               2.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2678           114           234               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2677           114           234              68               0.0               2.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2680           114           236               1               7.0               9.0                            1.0         3.0
2681           114           236               0               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2679           114           236              14               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2683           114           237               4               4.0               6.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2682           114           237              16               2.0               4.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2685           114           238               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2684           114           238               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2691           114           246               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2689           114           246              35               1.0               3.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2693           114           249               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2692           114           249              71               0.0               2.0                           70.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2699           114           263               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2698           114           263               7               4.0               6.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2733           125            48               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2732           125            48              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2745           125            79               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2744           125            79              28               0.0               2.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2759           125           138               0              13.0              15.0                            0.0         2.0
2760           125           138               0              15.0              17.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2757           125           138               2              11.0              13.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2765           125           144               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2764           125           144              15               0.0               2.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2769           125           158               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2768           125           158              19               0.0               2.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2772           125           161               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2771           125           161              13               2.0               4.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2783           125           229               0               5.0               7.0                            0.0         2.0
2784           125           229               0               7.0               9.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2781           125           229               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2791           125           236               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2790           125           236              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2798           125           246               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2796           125           246              10               0.0               2.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2816           132             1               4              36.0              38.0                            0.0         2.0
2817           132             1               1              34.0              36.0                            0.0         1.0
2818           132             1               1              40.0              42.0                            0.0         4.0
2819           132             1               0              38.0              40.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2817           132             1               1              34.0              36.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2825           132             4               6              19.0              21.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2824           132             4              14              17.0              19.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2829           132             9               3              14.0              16.0                            0.0         4.0
2830           132             9               2              10.0              12.0                            0.0         2.0
2831           132             9               1               8.0              10.0                            0.0         1.0
2832           132             9               1              12.0              14.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2831           132             9               1               8.0              10.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2833           132            10              73               2.0               4.0                            0.0         2.0
2834           132            10              16               4.0               6.0                            0.0         3.0
2835           132            10               3               0.0               2.0                            0.0         1.0
2836           132            10               1               6.0               8.0                            0.0         4.0
2837           132            10               1              14.0              16.0                            0.0         8.0
2838           132            10               1              18.0              20.0                            0.0        10.0
2839           132            10               1              22.0              24.0                            0.0        12.0
2840           132            10               0               8.0              10.0                            0.0         5.0
2841           132            10               0              10.0              12.0                            0.0         6.0
2842           132            10               0              12.0              14.0                            0.0         7.0
2843           132            10               0              16.0              18.0                            0.0         9.0
2844           132            10               0              20.0              22.0                            0.0        11.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2835           132            10               3               0.0               2.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2851           132            13               0              14.0              16.0                            0.0         2.0
2852           132            13               0              16.0              18.0                            0.0         3.0
2853           132            13               0              18.0              20.0                            0.0         4.0
2854           132            13               0              24.0              26.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2850           132            13               1              12.0              14.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2860           132            16               3              15.0              17.0                            0.0         2.0
2861           132            16               2              13.0              15.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2861           132            16               2              13.0              15.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2873           132            22               3              18.0              20.0                            0.0         2.0
2874           132            22               1              16.0              18.0                            0.0         1.0
2875           132            22               1              20.0              22.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2874           132            22               1              16.0              18.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2878           132            25              23              18.0              20.0                            0.0         4.0
2879           132            25              15              12.0              14.0                            0.0         1.0
2880           132            25               5              20.0              22.0                            0.0         5.0
2881           132            25               2              22.0              24.0                            0.0         6.0
2882           132            25               2              26.0              28.0                            0.0         8.0
2883           132            25               2              28.0              30.0                            0.0         9.0
2884           132            25               0              14.0              16.0                            0.0         2.0
2885           132            25               0              16.0              18.0                            0.0         3.0
2886           132            25               0              24.0              26.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2879           132            25              15              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2887           132            26               2              21.0              23.0                            0.0         3.0
2888           132            26               1              17.0              19.0                            0.0         1.0
2889           132            26               1              19.0              21.0                            0.0         2.0
2890           132            26               1              23.0              25.0                            0.0         4.0
2891           132            26               1              25.0              27.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2888           132            26               1              17.0              19.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2902           132            33              13              19.0              21.0                            0.0         5.0
2903           132            33               7              17.0              19.0                            0.0         4.0
2904           132            33               4              25.0              27.0                            0.0         8.0
2905           132            33               3              11.0              13.0                            0.0         1.0
2906           132            33               3              13.0              15.0                            0.0         2.0
2907           132            33               3              27.0              29.0                            0.0         9.0
2908           132            33               2              21.0              23.0                            0.0         6.0
2909           132            33               0              15.0              17.0                            0.0         3.0
2910           132            33               0              23.0              25.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2905           132            33               3              11.0              13.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2911           132            35               7               9.0              11.0                            0.0         2.0
2912           132            35               3               7.0               9.0                            0.0         1.0
2913           132            35               1              11.0              13.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2912           132            35               3               7.0               9.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2926           132            40               7              14.0              16.0                            0.0         2.0
2927           132            40               4              26.0              28.0                            0.0         8.0
2928           132            40               3              20.0              22.0                            0.0         5.0
2929           132            40               2              24.0              26.0                            0.0         7.0
2930           132            40               1              12.0              14.0                            0.0         1.0
2931           132            40               0              16.0              18.0                            0.0         3.0
2932           132            40               0              18.0              20.0                            0.0         4.0
2933           132            40               0              22.0              24.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2930           132            40               1              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2936           132            42              21              18.0              20.0                            0.0         2.0
2937           132            42               6              16.0              18.0                            0.0         1.0
2938           132            42               1              20.0              22.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2937           132            42               6              16.0              18.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2941           132            43               3              20.0              22.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2940           132            43               8              16.0              18.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2953           132            48               0              10.0              12.0                            0.0         2.0
2954           132            48               0              14.0              16.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2950           132            48               1               8.0              10.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2955           132            49              12              12.0              14.0                            0.0         2.0
2956           132            49              11              10.0              12.0                            0.0         1.0
2957           132            49               4              16.0              18.0                            0.0         4.0
2958           132            49               4              18.0              20.0                            0.0         5.0
2959           132            49               2              20.0              22.0                            0.0         6.0
2960           132            49               0              14.0              16.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2956           132            49              11              10.0              12.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2966           132            50               0              25.0              27.0                            0.0         5.0
2967           132            50               0              27.0              29.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2961           132            50              36              17.0              19.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2973           132            52               4              26.0              28.0                            0.0         7.0
2974           132            52               2              14.0              16.0                            0.0         1.0
2975           132            52               1              18.0              20.0                            0.0         3.0
2976           132            52               1              24.0              26.0                            0.0         6.0
2977           132            52               0              16.0              18.0                            0.0         2.0
2978           132            52               0              20.0              22.0                            0.0         4.0
2979           132            52               0              22.0              24.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2974           132            52               2              14.0              16.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2983           132            55               2              17.0              19.0                            0.0         2.0
2984           132            55               1              15.0              17.0                            0.0         1.0
2985           132            55               1              19.0              21.0                            0.0         3.0
2986           132            55               1              23.0              25.0                            0.0         5.0
2987           132            55               0              21.0              23.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2984           132            55               1              15.0              17.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2992           132            61              27              11.0              13.0                            0.0         2.0
2993           132            61              15               9.0              11.0                            0.0         1.0
2994           132            61               1              13.0              15.0                            0.0         3.0
2995           132            61               1              17.0              19.0                            0.0         5.0
2996           132            61               0              15.0              17.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2993           132            61              15               9.0              11.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2997           132            62               9              11.0              13.0                            0.0         2.0
2998           132            62               1               9.0              11.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
2998           132            62               1               9.0              11.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3003           132            65              22              18.0              20.0                            0.0         4.0
3004           132            65               3              12.0              14.0                            0.0         1.0
3005           132            65               3              16.0              18.0                            0.0         3.0
3006           132            65               3              20.0              22.0                            0.0         5.0
3007           132            65               0              14.0              16.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3004           132            65               3              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3019           132            68               0              22.0              24.0                            0.0         5.0
3020           132            68               0              24.0              26.0                            0.0         6.0
3021           132            68               0              26.0              28.0                            0.0         7.0
3022           132            68               0              28.0              30.0                            0.0         8.0
3023           132            68               0              30.0              32.0                            0.0         9.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3017           132            68               1              14.0              16.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3041           132            74               6              18.0              20.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3040           132            74              16              16.0              18.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3045           132            76              15               7.0               9.0                            0.0         2.0
3046           132            76               5               5.0               7.0                            0.0         1.0
3047           132            76               2               9.0              11.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3046           132            76               5               5.0               7.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3054           132            79               2              20.0              22.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3053           132            79              24              16.0              18.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3055           132            80              19              15.0              17.0                            0.0         3.0
3056           132            80               3              11.0              13.0                            0.0         1.0
3057           132            80               3              13.0              15.0                            0.0         2.0
3058           132            80               2              17.0              19.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3056           132            80               3              11.0              13.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3060           132            82              10              10.0              12.0                            0.0         2.0
3061           132            82               3               8.0              10.0                            0.0         1.0
3062           132            82               2              14.0              16.0                            0.0         4.0
3063           132            82               1              12.0              14.0                            0.0         3.0
3064           132            82               1              16.0              18.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3061           132            82               3               8.0              10.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3078           132            87               0              24.0              26.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3076           132            87               2              16.0              18.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3083           132            88               0              24.0              26.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3079           132            88              18              20.0              22.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3084           132            89               9              14.0              16.0                            0.0         3.0
3085           132            89               8              16.0              18.0                            0.0         4.0
3086           132            89               3              12.0              14.0                            0.0         2.0
3087           132            89               2              10.0              12.0                            0.0         1.0
3088           132            89               1              18.0              20.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3087           132            89               2              10.0              12.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3092           132            90               1              22.0              24.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3090           132            90              40              16.0              18.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3093           132            91               6              12.0              14.0                            0.0         2.0
3094           132            91               5              10.0              12.0                            0.0         1.0
3095           132            91               1              14.0              16.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3094           132            91               5              10.0              12.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3098           132            93               6               8.0              10.0                            0.0         2.0
3099           132            93               5               6.0               8.0                            0.0         1.0
3100           132            93               2              10.0              12.0                            0.0         3.0
3101           132            93               1              12.0              14.0                            0.0         4.0
3102           132            93               1              16.0              18.0                            0.0         6.0
3103           132            93               0              14.0              16.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3099           132            93               5               6.0               8.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3105           132            95              24               8.0              10.0                            0.0         2.0
3106           132            95              11               6.0               8.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3106           132            95              11               6.0               8.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3110           132            97               9              17.0              19.0                            0.0         4.0
3111           132            97               7              11.0              13.0                            0.0         1.0
3112           132            97               3              13.0              15.0                            0.0         2.0
3113           132            97               3              15.0              17.0                            0.0         3.0
3114           132            97               3              19.0              21.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3111           132            97               7              11.0              13.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3115           132            98               2               9.0              11.0                            0.0         3.0
3116           132            98               2              11.0              13.0                            0.0         4.0
3117           132            98               2              15.0              17.0                            0.0         6.0
3118           132            98               1               5.0               7.0                            0.0         1.0
3119           132            98               1               7.0               9.0                            0.0         2.0
3120           132            98               1              13.0              15.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3118           132            98               1               5.0               7.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3124           132           100               0              20.0              22.0                            0.0         3.0
3125           132           100               0              22.0              24.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3121           132           100              85              16.0              18.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3126           132           101               5              10.0              12.0                            0.0         2.0
3127           132           101               2              12.0              14.0                            0.0         3.0
3128           132           101               1               8.0              10.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3128           132           101               1               8.0              10.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3149           132           112              26              14.0              16.0                            0.0         2.0
3150           132           112              10              16.0              18.0                            0.0         3.0
3151           132           112               4              18.0              20.0                            0.0         4.0
3152           132           112               1              12.0              14.0                            0.0         1.0
3153           132           112               1              32.0              34.0                            0.0        11.0
3154           132           112               0              20.0              22.0                            0.0         5.0
3155           132           112               0              22.0              24.0                            0.0         6.0
3156           132           112               0              24.0              26.0                            0.0         7.0
3157           132           112               0              26.0              28.0                            0.0         8.0
3158           132           112               0              28.0              30.0                            0.0         9.0
3159           132           112               0              30.0              32.0                            0.0        10.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3152           132           112               1              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3162           132           113               2              21.0              23.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3160           132           113              36              17.0              19.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3168           132           117               2              12.0              14.0                            0.0         3.0
3169           132           117               1               8.0              10.0                            0.0         1.0
3170           132           117               1              10.0              12.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3169           132           117               1               8.0              10.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3181           132           124               9               6.0               8.0                            0.0         2.0
3182           132           124               7               4.0               6.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3182           132           124               7               4.0               6.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3197           132           129              16              12.0              14.0                            0.0         3.0
3198           132           129               7              10.0              12.0                            0.0         2.0
3199           132           129               3              14.0              16.0                            0.0         4.0
3200           132           129               1               8.0              10.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3200           132           129               1               8.0              10.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3204           132           131               8               8.0              10.0                            0.0         2.0
3205           132           131               2               6.0               8.0                            0.0         1.0
3206           132           131               1              10.0              12.0                            0.0         3.0
3207           132           131               1              14.0              16.0                            0.0         5.0
3208           132           131               0              12.0              14.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3205           132           131               2               6.0               8.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3209           132           132              34               2.0               4.0                            0.0         2.0
3210           132           132              14               0.0               2.0                            0.0         1.0
3211           132           132               5               6.0               8.0                            0.0         4.0
3212           132           132               5               8.0              10.0                            0.0         5.0
3213           132           132               4               4.0               6.0                            0.0         3.0
3214           132           132               2              12.0              14.0                            0.0         7.0
3215           132           132               2              14.0              16.0                            0.0         8.0
3216           132           132               1              18.0              20.0                            0.0        10.0
3217           132           132               1              26.0              28.0                            0.0        14.0
3218           132           132               1              44.0              46.0                            0.0        23.0
3219           132           132               0              20.0              22.0                            0.0        11.0
3220           132           132               0              16.0              18.0                            0.0         9.0
3221           132           132               0              24.0              26.0                            0.0        13.0
3222           132           132               0              10.0              12.0                            0.0         6.0
3223           132           132               0              28.0              30.0                            0.0        15.0
3224           132           132               0              30.0              32.0                            0.0        16.0
3225           132           132               0              32.0              34.0                            0.0        17.0
3226           132           132               0              34.0              36.0                            0.0        18.0
3227           132           132               0              36.0              38.0                            0.0        19.0
3228           132           132               0              38.0              40.0                            0.0        20.0
3229           132           132               0              40.0              42.0                            0.0        21.0
3230           132           132               0              42.0              44.0                            0.0        22.0
3231           132           132               0              22.0              24.0                            0.0        12.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3210           132           132              14               0.0               2.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3250           132           137               1              20.0              22.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3248           132           137              15              16.0              18.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3251           132           138              61              10.0              12.0                            0.0         2.0
3252           132           138              12              12.0              14.0                            0.0         3.0
3253           132           138               2               8.0              10.0                            0.0         1.0
3254           132           138               1              14.0              16.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3253           132           138               2               8.0              10.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3261           132           140               0              14.0              16.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3260           132           140               1              12.0              14.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3264           132           141              20              18.0              20.0                           20.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3262           132           141              30              16.0              18.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3268           132           142               6              22.0              24.0                            6.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3267           132           142              14              16.0              18.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3274           132           143               0              14.0              16.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3273           132           143               1              12.0              14.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3279           132           144               0              21.0              23.0                            0.0         3.0
3280           132           144               0              23.0              25.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3275           132           144              28              17.0              19.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3281           132           145              32              15.0              17.0                            0.0         3.0
3282           132           145               5              17.0              19.0                            0.0         4.0
3283           132           145               3              13.0              15.0                            0.0         2.0
3284           132           145               1              11.0              13.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3284           132           145               1              11.0              13.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3285           132           146              16              14.0              16.0                            0.0         7.0
3286           132           146               6              16.0              18.0                            0.0         8.0
3287           132           146               1               2.0               4.0                            0.0         1.0
3288           132           146               0               4.0               6.0                            0.0         2.0
3289           132           146               0               6.0               8.0                            0.0         3.0
3290           132           146               0               8.0              10.0                            0.0         4.0
3291           132           146               0              10.0              12.0                            0.0         5.0
3292           132           146               0              12.0              14.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3287           132           146               1               2.0               4.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3299           132           148               0              15.0              17.0                            0.0         3.0
3301           132           148               0              23.0              25.0                            0.0         7.0
3302           132           148               0              25.0              27.0                            0.0         8.0
3303           132           148               0              27.0              29.0                            0.0         9.0
3304           132           148               0              29.0              31.0                            0.0        10.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3296           132           148               1              11.0              13.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3305           132           149               3              14.0              16.0                            0.0         2.0
3306           132           149               1              12.0              14.0                            0.0         1.0
3307           132           149               1              16.0              18.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3306           132           149               1              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3317           132           155              11              13.0              15.0                            0.0         4.0
3318           132           155               3              11.0              13.0                            0.0         3.0
3319           132           155               1               7.0               9.0                            0.0         1.0
3320           132           155               1               9.0              11.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3319           132           155               1               7.0               9.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3341           132           161               2              22.0              24.0                            3.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3338           132           161             117              16.0              18.0                          116.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3351           132           163              11              22.0              24.0                           11.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3349           132           163              70              16.0              18.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3358           132           164               0              13.0              15.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3355           132           164               3              11.0              13.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3371           132           170               1              20.0              22.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3370           132           170               7              14.0              16.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3376           132           175               3              13.0              15.0                            0.0         2.0
3377           132           175               1              11.0              13.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3377           132           175               1              11.0              13.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3378           132           177              10               9.0              11.0                            0.0         2.0
3379           132           177               1               7.0               9.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3379           132           177               1               7.0               9.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3383           132           180               4               6.0               8.0                            0.0         2.0
3384           132           180               3               4.0               6.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3384           132           180               3               4.0               6.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3395           132           185               2              19.0              21.0                            0.0         2.0
3396           132           185               1              17.0              19.0                            0.0         1.0
3397           132           185               1              23.0              25.0                            0.0         4.0
3398           132           185               0              21.0              23.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3396           132           185               1              17.0              19.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3401           132           186               2              20.0              22.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3399           132           186              46              16.0              18.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3414           132           191               9               8.0              10.0                            0.0         2.0
3415           132           191               3               6.0               8.0                            0.0         1.0
3416           132           191               2              10.0              12.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3415           132           191               3               6.0               8.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3421           132           195               4              25.0              27.0                            0.0         3.0
3422           132           195               1              21.0              23.0                            0.0         1.0
3423           132           195               1              27.0              29.0                            0.0         4.0
3424           132           195               0              23.0              25.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3422           132           195               1              21.0              23.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3427           132           197               9               6.0               8.0                            0.0         2.0
3428           132           197               6               4.0               6.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3428           132           197               6               4.0               6.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3429           132           198              11              10.0              12.0                            0.0         2.0
3430           132           198               7               8.0              10.0                            0.0         1.0
3431           132           198               2              12.0              14.0                            0.0         3.0
3432           132           198               1              14.0              16.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3430           132           198               7               8.0              10.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3442           132           203              10               5.0               7.0                            0.0         2.0
3443           132           203               4               3.0               5.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3443           132           203               4               3.0               5.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3444           132           205              13               5.0               7.0                            0.0         2.0
3445           132           205               5               3.0               5.0                            0.0         1.0
3446           132           205               1               7.0               9.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3445           132           205               5               3.0               5.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3457           132           211               0              22.0              24.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3455           132           211               5              16.0              18.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3459           132           212               1              18.0              20.0                            0.0         2.0
3460           132           212               1              22.0              24.0                            0.0         4.0
3461           132           212               0              20.0              22.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3458           132           212               5              16.0              18.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3468           132           216              43               3.0               5.0                            0.0         2.0
3469           132           216              12               5.0               7.0                            0.0         3.0
3470           132           216               8               1.0               3.0                            0.0         1.0
3471           132           216               1               7.0               9.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3470           132           216               8               1.0               3.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3472           132           217               4              15.0              17.0                            0.0         2.0
3473           132           217               1              13.0              15.0                            0.0         1.0
3474           132           217               1              17.0              19.0                            0.0         3.0
3475           132           217               1              19.0              21.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3473           132           217               1              13.0              15.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3492           132           224               1              21.0              23.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3490           132           224              18              17.0              19.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3509           132           227               7              24.0              26.0                            0.0         5.0
3510           132           227               1              16.0              18.0                            0.0         1.0
3511           132           227               1              22.0              24.0                            0.0         4.0
3512           132           227               0              18.0              20.0                            0.0         2.0
3513           132           227               0              20.0              22.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3510           132           227               1              16.0              18.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3514           132           228               6              22.0              24.0                            0.0         5.0
3515           132           228               4              24.0              26.0                            0.0         6.0
3516           132           228               1              14.0              16.0                            0.0         1.0
3517           132           228               1              18.0              20.0                            0.0         3.0
3518           132           228               0              16.0              18.0                            0.0         2.0
3519           132           228               0              20.0              22.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3516           132           228               1              14.0              16.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3524           132           229               1              22.0              24.0                            1.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3523           132           229               2              14.0              16.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3537           132           231               0              26.0              28.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3535           132           231               1              16.0              18.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3540           132           232               3              20.0              22.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3539           132           232               9              16.0              18.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3545           132           233               0              11.0              13.0                            0.0         2.0
3546           132           233               0              13.0              15.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3544           132           233               1               9.0              11.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3549           132           234               1              20.0              22.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3547           132           234              44              16.0              18.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3552           132           236              15              20.0              22.0                           15.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3551           132           236              54              18.0              20.0                           50.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3555           132           237              14              20.0              22.0                           15.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3554           132           237              18              16.0              18.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3559           132           238               0              16.0              18.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3558           132           238               1              14.0              16.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3562           132           239               1              25.0              27.0                            1.0         4.0
3563           132           239               0              23.0              25.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3560           132           239              63              19.0              21.0                           62.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3567           132           243               6              22.0              24.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3566           132           243              16              20.0              22.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3570           132           244               5              21.0              23.0                            0.0         2.0
3572           132           244               1              25.0              27.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3569           132           244              19              19.0              21.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3576           132           246               1              21.0              23.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3573           132           246              31              17.0              19.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3578           132           248               3              16.0              18.0                            0.0         2.0
3579           132           248               1              14.0              16.0                            0.0         1.0
3580           132           248               1              22.0              24.0                            0.0         5.0
3581           132           248               0              18.0              20.0                            0.0         3.0
3582           132           248               0              20.0              22.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3579           132           248               1              14.0              16.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3595           132           254               2              20.0              22.0                            0.0         2.0
3596           132           254               1              22.0              24.0                            0.0         3.0
3597           132           254               1              24.0              26.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3594           132           254               2              18.0              20.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3598           132           255              43              16.0              18.0                            0.0         3.0
3599           132           255              22              14.0              16.0                            0.0         2.0
3600           132           255               7              18.0              20.0                            0.0         4.0
3601           132           255               1              12.0              14.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3601           132           255               1              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3602           132           256              21              16.0              18.0                            0.0         4.0
3603           132           256              15              14.0              16.0                            0.0         3.0
3604           132           256               5              18.0              20.0                            0.0         5.0
3605           132           256               1              10.0              12.0                            0.0         1.0
3606           132           256               1              12.0              14.0                            0.0         2.0
3607           132           256               1              22.0              24.0                            0.0         7.0
3608           132           256               0              20.0              22.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3605           132           256               1              10.0              12.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3609           132           257               3              26.0              28.0                            0.0         8.0
3610           132           257               2              12.0              14.0                            0.0         1.0
3611           132           257               2              14.0              16.0                            0.0         2.0
3612           132           257               0              16.0              18.0                            0.0         3.0
3613           132           257               0              18.0              20.0                            0.0         4.0
3614           132           257               0              20.0              22.0                            0.0         5.0
3615           132           257               0              22.0              24.0                            0.0         6.0
3616           132           257               0              24.0              26.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3610           132           257               2              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3634           132           261               0              25.0              27.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3630           132           261               3              15.0              17.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3642           132           263               0              14.0              16.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3639           132           263               1              12.0              14.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3657           137            37               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3656           137            37               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3662           137            43               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3661           137            43              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3666           137            48               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3665           137            48              24               1.0               3.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3673           137            68               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3672           137            68              23               1.0               3.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3679           137            79               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3678           137            79              73               0.0               2.0                           73.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3685           137            90               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3684           137            90              24               0.0               2.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3688           137           100               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3687           137           100              27               0.0               2.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3691           137           112               1               4.0               6.0                            1.0         2.0
3692           137           112               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3690           137           112               2               2.0               4.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3694           137           113               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3693           137           113              45               1.0               3.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3696           137           114               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3695           137           114              21               1.0               3.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3707           137           141               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3706           137           141              40               1.0               3.0                           40.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3710           137           143               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3709           137           143               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3712           137           144               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3711           137           144              18               1.0               3.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3716           137           148               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3715           137           148              22               1.0               3.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3720           137           158               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3719           137           158              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3739           137           211               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3738           137           211              12               1.0               3.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3747           137           231               0               4.0               6.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3745           137           231               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3749           137           232               7               3.0               5.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3748           137           232              15               1.0               3.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3752           137           234               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3751           137           234              43               0.0               2.0                           43.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3754           137           236               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3753           137           236              22               2.0               4.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3757           137           238               1               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3756           137           238              14               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3763           137           249               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3762           137           249              33               1.0               3.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3772           138             1               2              33.0              35.0                            0.0         6.0
3774           138             1               1              25.0              27.0                            0.0         2.0
3775           138             1               1              27.0              29.0                            0.0         3.0
3776           138             1               1              31.0              33.0                            0.0         5.0
3777           138             1               0              29.0              31.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3773           138             1               1              23.0              25.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3781           138             4               2              13.0              15.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3779           138             4               4               9.0              11.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3782           138             7              19               3.0               5.0                            0.0         2.0
3783           138             7              13               1.0               3.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3783           138             7              13               1.0               3.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3784           138             9               4               7.0               9.0                            0.0         2.0
3785           138             9               1               5.0               7.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3785           138             9               1               5.0               7.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3797           138            16               3               8.0              10.0                            0.0         2.0
3798           138            16               2               6.0               8.0                            0.0         1.0
3799           138            16               1              10.0              12.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3798           138            16               2               6.0               8.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3807           138            24               2               9.0              11.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3806           138            24               7               7.0               9.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3822           138            35               3              12.0              14.0                            0.0         2.0
3823           138            35               1              10.0              12.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3823           138            35               1              10.0              12.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3837           138            41               5               8.0              10.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3836           138            41              25               6.0               8.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3838           138            42              13               7.0               9.0                            0.0         2.0
3839           138            42               8               5.0               7.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3839           138            42               8               5.0               7.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3845           138            45               0              12.0              14.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3843           138            45               5              10.0              12.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3848           138            48              10              12.0              14.0                            9.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3846           138            48              45               8.0              10.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3856           138            53               4               5.0               7.0                            0.0         2.0
3857           138            53               2               3.0               5.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3857           138            53               2               3.0               5.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3860           138            56               4               4.0               6.0                            0.0         2.0
3861           138            56               2               2.0               4.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3861           138            56               2               2.0               4.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3867           138            63               2              12.0              14.0                            0.0         3.0
3868           138            63               1               8.0              10.0                            0.0         1.0
3869           138            63               1              10.0              12.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3868           138            63               1               8.0              10.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3877           138            68               6              12.0              14.0                            6.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3875           138            68              39               8.0              10.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3879           138            69               1               9.0              11.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3878           138            69               4               7.0               9.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3887           138            74               3               7.0               9.0                            0.0         2.0
3888           138            74               1              11.0              13.0                            0.0         4.0
3890           138            74               0               9.0              11.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3886           138            74              15               5.0               7.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3902           138            79               1              14.0              16.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3899           138            79              25               8.0              10.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3911           138            85               2              14.0              16.0                            0.0         2.0
3912           138            85               1              12.0              14.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3912           138            85               1              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3919           138            88               6              14.0              16.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3918           138            88               7              12.0              14.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3925           138            90               8              12.0              14.0                            8.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3923           138            90              35               8.0              10.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3926           138            91               2              18.0              20.0                            0.0         2.0
3927           138            91               1              16.0              18.0                            0.0         1.0
3928           138            91               1              20.0              22.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3927           138            91               1              16.0              18.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3938           138            98               4               7.0               9.0                            0.0         3.0
3939           138            98               1               3.0               5.0                            0.0         1.0
3940           138            98               1               9.0              11.0                            0.0         4.0
3941           138            98               0               5.0               7.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3939           138            98               1               3.0               5.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3944           138           100               3              12.0              14.0                            4.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3942           138           100              38               8.0              10.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3953           138           107               3              12.0              14.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3951           138           107              54               8.0              10.0                           54.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3958           138           113               3              13.0              15.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3956           138           113              31               9.0              11.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3961           138           114               0              11.0              13.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3959           138           114              16               9.0              11.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3971           138           125               2              12.0              14.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3968           138           125              11              10.0              12.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3975           138           129              23               2.0               4.0                            0.0         2.0
3976           138           129              14               0.0               2.0                            0.0         1.0
3977           138           129               1               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3976           138           129              14               0.0               2.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3981           138           132              58              11.0              13.0                            0.0         2.0
3982           138           132               8              13.0              15.0                            0.0         3.0
3983           138           132               1               9.0              11.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3983           138           132               1               9.0              11.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3991           138           137               2               9.0              11.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
3989           138           137              16               7.0               9.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4002           138           140              21               9.0              11.0                           22.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4001           138           140              26               7.0               9.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4005           138           141               1              12.0              14.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4003           138           141              63               8.0              10.0                           63.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4009           138           142               1              13.0              15.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4008           138           142               3               7.0               9.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4015           138           144               0              12.0              14.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4012           138           144              12               8.0              10.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4016           138           145              23               6.0               8.0                            0.0         2.0
4017           138           145               3               4.0               6.0                            0.0         1.0
4018           138           145               1               8.0              10.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4017           138           145               3               4.0               6.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4024           138           148               2              12.0              14.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4022           138           148              20               8.0              10.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4031           138           157               4               6.0               8.0                            0.0         2.0
4032           138           157               3               4.0               6.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4032           138           157               3               4.0               6.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4036           138           158               1              16.0              18.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4033           138           158               8              10.0              12.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4045           138           161               0              13.0              15.0                            0.0         5.0
4046           138           161               0              15.0              17.0                            0.0         6.0
4047           138           161               0              17.0              19.0                            0.0         7.0
4048           138           161               0              19.0              21.0                            0.0         8.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4043           138           161               2               5.0               7.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4052           138           162               1              12.0              14.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4051           138           162               3               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4058           138           163               0              12.0              14.0                            0.0         4.0
4059           138           163               0              14.0              16.0                            0.0         5.0
4060           138           163               0              18.0              20.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4055           138           163               4               6.0               8.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4063           138           164              13              11.0              13.0                           13.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4061           138           164              57               7.0               9.0                           56.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4077           138           170               0              13.0              15.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4073           138           170              51               7.0               9.0                           50.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4084           138           175               2              11.0              13.0                            0.0         2.0
4085           138           175               1               9.0              11.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4085           138           175               1               9.0              11.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4098           138           186               1              14.0              16.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4095           138           186              34               8.0              10.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4099           138           188               6              11.0              13.0                            0.0         2.0
4100           138           188               3               9.0              11.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4100           138           188               3               9.0              11.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4109           138           194               1               7.0               9.0                            0.0         2.0
4110           138           194               1               9.0              11.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4108           138           194               1               5.0               7.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4116           138           200               5              15.0              17.0                            0.0         2.0
4117           138           200               1              13.0              15.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4117           138           200               1              13.0              15.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4132           138           209               3              12.0              14.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4130           138           209               8              10.0              12.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4137           138           211               2              12.0              14.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4135           138           211              15              10.0              12.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4141           138           213               1              10.0              12.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4140           138           213               3               8.0              10.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4149           138           223              21               2.0               4.0                            0.0         2.0
4150           138           223               6               0.0               2.0                            0.0         1.0
4151           138           223               2               4.0               6.0                            0.0         3.0
4152           138           223               1               8.0              10.0                            0.0         5.0
4153           138           223               0               6.0               8.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4150           138           223               6               0.0               2.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4155           138           224               1              10.0              12.0                            1.0         2.0
4156           138           224               1              12.0              14.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4154           138           224              10               8.0              10.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4169           138           229               1              11.0              13.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4168           138           229               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4173           138           230               1              13.0              15.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4172           138           230              20               7.0               9.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4178           138           231               1              23.0              25.0                            0.0         8.0
4179           138           231               0              17.0              19.0                            0.0         5.0
4180           138           231               0              19.0              21.0                            0.0         6.0
4181           138           231               0              21.0              23.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4174           138           231              14               9.0              11.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4185           138           232               1              14.0              16.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4182           138           232               9               8.0              10.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4191           138           234               6              10.0              12.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4190           138           234              28               8.0              10.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4200           138           237               1              12.0              14.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4199           138           237               4               6.0               8.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4202           138           238               6              10.0              12.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4201           138           238              70               8.0              10.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4207           138           239               0              13.0              15.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4206           138           239               2               7.0               9.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4211           138           243               4              11.0              13.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4210           138           243              14               9.0              11.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4219           138           246               2              13.0              15.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4217           138           246              14               9.0              11.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4225           138           249               1              13.0              15.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4223           138           249              23               9.0              11.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4236           138           257               6              13.0              15.0                            0.0         2.0
4237           138           257               2              11.0              13.0                            0.0         1.0
4238           138           257               1              15.0              17.0                            0.0         3.0
4239           138           257               1              17.0              19.0                            0.0         4.0
4240           138           257               1              19.0              21.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4237           138           257               2              11.0              13.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4250           138           261               6              13.0              15.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4249           138           261               6              11.0              13.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4252           138           262               3               9.0              11.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4251           138           262              55               7.0               9.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4254           138           263               1               9.0              11.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4253           138           263              73               7.0               9.0                           69.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4259           140             7               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4258           140             7               7               2.0               4.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4268           140            33               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4267           140            33               7               6.0               8.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4272           140            41               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4271           140            41              15               2.0               4.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4274           140            42               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4273           140            42               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4276           140            43               6               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4275           140            43              26               0.0               2.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4287           140            74               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4286           140            74              15               1.0               3.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4292           140            79              15               4.0               6.0                           16.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4291           140            79              21               2.0               4.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4296           140            87               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4295           140            87              10               5.0               7.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4302           140            95               0               9.0              11.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4300           140            95               1               7.0               9.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4310           140           113               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4309           140           113              21               3.0               5.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4318           140           132               4              19.0              21.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4317           140           132               7              17.0              19.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4320           140           137               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4319           140           137              30               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4322           140           138               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4321           140           138              14               8.0              10.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4324           140           140               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4323           140           140              53               0.0               2.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4330           140           145               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4329           140           145              11               2.0               4.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4337           140           158               0               6.0               8.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4335           140           158               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4339           140           161              24               2.0               4.0                           26.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4338           140           161              42               0.0               2.0                           40.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4341           140           162              33               2.0               4.0                           39.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4340           140           162             142               0.0               2.0                          136.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4343           140           163               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4342           140           163              27               0.0               2.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4345           140           164               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4344           140           164              24               2.0               4.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4348           140           170               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4347           140           170              45               1.0               3.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4350           140           179               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4349           140           179               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4352           140           181               1              11.0              13.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4351           140           181               5               9.0              11.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4360           140           200               1              12.0              14.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4359           140           200               2              10.0              12.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4364           140           211               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4363           140           211               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4369           140           223               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4368           140           223               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4375           140           229               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4374           140           229             154               0.0               2.0                          154.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4377           140           230               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4376           140           230              32               1.0               3.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4382           140           233              10               2.0               4.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4381           140           233              58               0.0               2.0                           56.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4384           140           234               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4383           140           234              25               2.0               4.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4387           140           236               7               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4386           140           236             289               0.0               2.0                          289.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4389           140           237               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4388           140           237             208               0.0               2.0                          208.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4391           140           238              21               3.0               5.0                           21.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4390           140           238              58               1.0               3.0                           58.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4393           140           239               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4392           140           239             106               1.0               3.0                          106.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4400           140           249               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4399           140           249              17               3.0               5.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4409           140           262               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4408           140           262             170               0.0               2.0                          170.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4411           140           263               1               2.0               4.0                            1.0         2.0
4412           140           263               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4410           140           263             220               0.0               2.0                          220.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4416           141             7               2               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4415           141             7               8               2.0               4.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4419           141            24               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4418           141            24              14               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4424           141            41               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4423           141            41              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4426           141            42               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4425           141            42               9               3.0               5.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4428           141            43               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4427           141            43              33               0.0               2.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4431           141            48               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4430           141            48              32               1.0               3.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4433           141            50               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4432           141            50              13               1.0               3.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4440           141            68               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4439           141            68               2               1.0               3.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4442           141            74               7               3.0               5.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4441           141            74              21               1.0               3.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4445           141            79               9               4.0               6.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4444           141            79              34               2.0               4.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4451           141            90               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4450           141            90               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4453           141           100               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4452           141           100              18               1.0               3.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4455           141           107              13               3.0               5.0                           14.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4454           141           107              31               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4459           141           112               0               7.0               9.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4456           141           112               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4461           141           113               3               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4460           141           113              12               2.0               4.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4463           141           114               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4462           141           114              14               3.0               5.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4473           141           137               3               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4472           141           137              48               1.0               3.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4476           141           138               1              10.0              12.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4475           141           138               3               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4481           141           141               0               2.0               4.0                            0.0         2.0
4482           141           141               0               6.0               8.0                            0.0         4.0
4483           141           141               0               8.0              10.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4478           141           141             118               0.0               2.0                          118.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4485           141           142               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4484           141           142             113               1.0               3.0                          113.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4488           141           144               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4487           141           144               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4490           141           145               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4489           141           145               6               1.0               3.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4494           141           148               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4493           141           148               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4501           141           158               0               7.0               9.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4498           141           158               9               3.0               5.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4503           141           161               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4502           141           161              76               0.0               2.0                           76.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4505           141           162               6               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4504           141           162             137               0.0               2.0                          137.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4507           141           163               7               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4506           141           163              53               0.0               2.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4509           141           164               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4508           141           164              21               1.0               3.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4511           141           166               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4510           141           166               9               3.0               5.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4514           141           168               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4513           141           168               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4516           141           170              19               2.0               4.0                           20.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4515           141           170              53               0.0               2.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4519           141           181               2              10.0              12.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4518           141           181               3               8.0              10.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4521           141           186              11               3.0               5.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4520           141           186              21               1.0               3.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4531           141           223               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4530           141           223               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4535           141           229               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4534           141           229             170               0.0               2.0                          170.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4537           141           230               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4536           141           230              42               1.0               3.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4539           141           231               3               6.0               8.0                            3.0         2.0
4540           141           231               3               8.0              10.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4538           141           231               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4542           141           232               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4541           141           232               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4544           141           233              10               2.0               4.0                           11.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4543           141           233              69               0.0               2.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4549           141           236               0               4.0               6.0                            0.0         3.0
4550           141           236               0               6.0               8.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4546           141           236             308               0.0               2.0                          306.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4552           141           237               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4551           141           237             228               0.0               2.0                          227.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4554           141           238               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4553           141           238              61               1.0               3.0                           61.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4556           141           239               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4555           141           239             102               1.0               3.0                          102.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4561           141           246               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4560           141           246              11               2.0               4.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4564           141           249               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4563           141           249              19               3.0               5.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4573           142             7               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4572           142             7               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4576           142            24               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4575           142            24              22               1.0               3.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4580           142            41               1               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4579           142            41              38               2.0               4.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4582           142            42               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4581           142            42              13               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4584           142            43               9               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4583           142            43              58               0.0               2.0                           58.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4588           142            48               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4587           142            48             239               0.0               2.0                          237.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4597           142            74               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4596           142            74              17               3.0               5.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4602           142            79               2               6.0               8.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4601           142            79              10               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4607           142            90               1               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4606           142            90              23               1.0               3.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4612           142           100               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4611           142           100              37               0.0               2.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4615           142           107               2               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4614           142           107              33               2.0               4.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4618           142           113               7               4.0               6.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4617           142           113              25               2.0               4.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4620           142           114               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4619           142           114              17               3.0               5.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4622           142           116               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4621           142           116               9               3.0               5.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4624           142           125               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4623           142           125               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4626           142           127               1               9.0              11.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4625           142           127               5               7.0               9.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4630           142           132               1              19.0              21.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4627           142           132               7              15.0              17.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4635           142           138               1              12.0              14.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4634           142           138               4               8.0              10.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4638           142           141              30               2.0               4.0                           31.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4637           142           141             104               0.0               2.0                          102.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4640           142           142               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4639           142           142             112               0.0               2.0                          112.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4642           142           143               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4641           142           143             185               0.0               2.0                          185.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4644           142           144               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4643           142           144               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4649           142           151               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4648           142           151              86               1.0               3.0                           86.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4651           142           152               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4650           142           152               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4653           142           158               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4652           142           158              16               2.0               4.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4655           142           161              12               2.0               4.0                           15.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4654           142           161             149               0.0               2.0                          146.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4657           142           162              17               2.0               4.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4656           142           162              77               0.0               2.0                           76.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4659           142           163               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4658           142           163             145               0.0               2.0                          145.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4661           142           164               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4660           142           164              65               1.0               3.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4664           142           170               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4663           142           170              54               1.0               3.0                           54.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4669           142           186               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4668           142           186              58               1.0               3.0                           58.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4686           142           231               0               7.0               9.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4683           142           231              15               3.0               5.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4688           142           232               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4687           142           232               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4691           142           234              17               3.0               5.0                           20.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4690           142           234              30               1.0               3.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4695           142           237               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4694           142           237             250               0.0               2.0                          250.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4697           142           238              27               2.0               4.0                           33.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4696           142           238             312               0.0               2.0                          306.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4699           142           239               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4698           142           239             424               0.0               2.0                          424.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4704           142           246               6               3.0               5.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4703           142           246              79               1.0               3.0                           78.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4707           142           249               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4706           142           249              27               2.0               4.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4714           142           262               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4712           142           262              61               1.0               3.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4716           142           263               4               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4715           142           263              53               1.0               3.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4721           143            24               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4720           143            24              18               1.0               3.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4725           143            41               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4724           143            41              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4727           143            42               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4726           143            42               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4729           143            43               5               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4728           143            43              16               0.0               2.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4741           143           100               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4740           143           100               3               1.0               3.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4752           143           132               1              21.0              23.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4750           143           132               4              17.0              19.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4754           143           137               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4753           143           137               5               2.0               4.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4761           143           142               0               4.0               6.0                            0.0         3.0
4762           143           142               0               6.0               8.0                            0.0         4.0
4763           143           142               0               8.0              10.0                            0.0         5.0
4764           143           142               0              10.0              12.0                            0.0         6.0
4765           143           142               0              12.0              14.0                            0.0         7.0
4766           143           142               0              14.0              16.0                            0.0         8.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4758           143           142              91               0.0               2.0                           91.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4769           143           143               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4767           143           143              56               0.0               2.0                           56.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4773           143           148               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4772           143           148               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4776           143           152               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4775           143           152               3               2.0               4.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4779           143           161               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4778           143           161              27               1.0               3.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4784           143           166               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4783           143           166              18               1.0               3.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4786           143           170               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4785           143           170               8               1.0               3.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4796           143           229               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4795           143           229              20               1.0               3.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4799           143           231               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4798           143           231               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4804           143           236               4               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4803           143           236              64               1.0               3.0                           63.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4807           143           238               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4806           143           238             124               0.0               2.0                          124.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4809           143           239               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4808           143           239             136               0.0               2.0                          136.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4811           143           243               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4810           143           243               3               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4813           143           244               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4812           143           244               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4815           143           246              22               2.0               4.0                           22.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4814           143           246              24               0.0               2.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4820           143           263               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4819           143           263              22               1.0               3.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4825           144            13               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4824           144            13              14               0.0               2.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4828           144            25               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4827           144            25               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4834           144            43               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4833           144            43               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4837           144            48               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4836           144            48              25               2.0               4.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4844           144            66               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4843           144            66               3               2.0               4.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4846           144            68               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4845           144            68              32               1.0               3.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4849           144            79               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4848           144            79              58               0.0               2.0                           58.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4853           144            87               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4852           144            87              19               0.0               2.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4855           144            88               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4854           144            88               6               1.0               3.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4862           144           107               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4861           144           107              35               0.0               2.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4872           144           138               0              12.0              14.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4870           144           138               4              10.0              12.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4874           144           140               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4873           144           140               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4876           144           141               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4875           144           141               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4889           144           164               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4888           144           164              51               1.0               3.0                           51.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4892           144           181               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4891           144           181               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4894           144           186               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4893           144           186              23               1.0               3.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4900           144           224               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4899           144           224               7               1.0               3.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4903           144           229               1               4.0               6.0                            1.0         2.0
4904           144           229               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4902           144           229              14               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4908           144           230               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4905           144           230              67               2.0               4.0                           67.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4910           144           231               1               2.0               4.0                            1.0         2.0
4911           144           231               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4909           144           231              63               0.0               2.0                           63.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4915           144           234               5               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4914           144           234              23               0.0               2.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4917           144           236               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4916           144           236              13               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4921           144           239               1               6.0               8.0                            1.0         2.0
4922           144           239               1               8.0              10.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4920           144           239               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4925           144           246               9               3.0               5.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4924           144           246              16               1.0               3.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4931           144           256               0               7.0               9.0                            0.0         4.0
4932           144           256               0               9.0              11.0                            0.0         5.0
4933           144           256               0              11.0              13.0                            0.0         6.0
4934           144           256               0              13.0              15.0                            0.0         7.0
4935           144           256               0              15.0              17.0                            0.0         8.0
4936           144           256               0              17.0              19.0                            0.0         9.0
4937           144           256               0               5.0               7.0                            0.0         3.0
4938           144           256               0              21.0              23.0                            0.0        11.0
4939           144           256               0              23.0              25.0                            0.0        12.0
4940           144           256               0              25.0              27.0                            0.0        13.0
4941           144           256               0              27.0              29.0                            0.0        14.0
4942           144           256               0              29.0              31.0                            0.0        15.0
4943           144           256               0              31.0              33.0                            0.0        16.0
4944           144           256               0              33.0              35.0                            0.0        17.0
4945           144           256               0              35.0              37.0                            0.0        18.0
4946           144           256               0              19.0              21.0                            0.0        10.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4928           144           256               4               1.0               3.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4948           144           261               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4947           144           261              13               0.0               2.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4961           145           132               1              14.0              16.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
4960           145           132               5              12.0              14.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5020           148            13               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5019           148            13               6               1.0               3.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5028           148            45               1              12.0              14.0                            0.0         7.0
5029           148            45               0               2.0               4.0                            0.0         2.0
5030           148            45               0               4.0               6.0                            0.0         3.0
5031           148            45               0               6.0               8.0                            0.0         4.0
5032           148            45               0               8.0              10.0                            0.0         5.0
5033           148            45               0              10.0              12.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5027           148            45               5               0.0               2.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5037           148            50               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5036           148            50               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5048           148            79               0               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5045           148            79              35               0.0               2.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5052           148            87               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5051           148            87              12               1.0               3.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5054           148            88               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5053           148            88               3               1.0               3.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5073           148           141               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5072           148           141               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5076           148           142               0               6.0               8.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5074           148           142               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5082           148           148               0               2.0               4.0                            0.0         2.0
5083           148           148               0               4.0               6.0                            0.0         3.0
5084           148           148               0               6.0               8.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5080           148           148               7               0.0               2.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5089           148           161               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5087           148           161               8               2.0               4.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5093           148           164               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5092           148           164              17               1.0               3.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5096           148           170               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5095           148           170              13               1.0               3.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5099           148           186               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5098           148           186              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5103           148           209               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5102           148           209               8               1.0               3.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5108           148           224               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5107           148           224               5               0.0               2.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5110           148           229               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5109           148           229              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5113           148           231               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5112           148           231              18               0.0               2.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5116           148           233               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5115           148           233               5               1.0               3.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5121           148           237               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5120           148           237               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5124           148           239               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5123           148           239               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5126           148           246               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5125           148           246               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5130           148           255               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5129           148           255               8               2.0               4.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5134           148           261               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5133           148           261               3               1.0               3.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5149           151            48               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5148           151            48              22               2.0               4.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5152           151            68               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5151           151            68               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5155           151            75               1               2.0               4.0                            0.0         2.0
5156           151            75               1               6.0               8.0                            0.0         4.0
5157           151            75               0               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5154           151            75              28               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5182           151           151               1               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5181           151           151              32               0.0               2.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5187           151           161               1               4.0               6.0                            1.0         2.0
5188           151           161               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5186           151           161               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5192           151           164               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5191           151           164               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5208           151           236               9               2.0               4.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5207           151           236              42               0.0               2.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5214           151           244               7               4.0               6.0                            0.0         2.0
5215           151           244               6               2.0               4.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5215           151           244               6               2.0               4.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5217           151           246               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5216           151           246               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5252           157           132               2              12.0              14.0                            0.0         2.0
5253           157           132               1              10.0              12.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5253           157           132               1              10.0              12.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5255           158             1               3              19.0              21.0                            0.0         4.0
5256           158             1               2              13.0              15.0                            0.0         1.0
5257           158             1               1              15.0              17.0                            0.0         2.0
5258           158             1               0              17.0              19.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5256           158             1               2              13.0              15.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5261           158            13               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5260           158            13              31               1.0               3.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5269           158            41               0               6.0               8.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5267           158            41               1               4.0               6.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5273           158            45               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5272           158            45               4               1.0               3.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5275           158            48               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5274           158            48              34               1.0               3.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5279           158            68               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5278           158            68              36               0.0               2.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5286           158            87               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5285           158            87              11               2.0               4.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5289           158            90               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5288           158            90              27               0.0               2.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5297           158           114               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5296           158           114              27               0.0               2.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5300           158           125               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5299           158           125              15               0.0               2.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5303           158           132               2              20.0              22.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5302           158           132               3              18.0              20.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5308           158           138               0              13.0              15.0                            0.0         2.0
5309           158           138               0              15.0              17.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5306           158           138               3              11.0              13.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5313           158           142               1               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5312           158           142              15               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5315           158           143               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5314           158           143               9               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5323           158           161              11               3.0               5.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5322           158           161              26               1.0               3.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5325           158           162               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5324           158           162              14               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5330           158           170               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5329           158           170              30               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5333           158           186               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5332           158           186              33               0.0               2.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5337           158           211               1               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5336           158           211              34               0.0               2.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5341           158           230               6               3.0               5.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5340           158           230              24               1.0               3.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5343           158           231               6               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5342           158           231              48               0.0               2.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5346           158           232               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5344           158           232               3               1.0               3.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5349           158           234               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5348           158           234              38               0.0               2.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5351           158           236               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5350           158           236               9               4.0               6.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5358           158           246               5               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5357           158           246              39               0.0               2.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5360           158           249               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5359           158           249              21               0.0               2.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5376           161            13               5               7.0               9.0                            5.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5375           161            13              15               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5378           161            14               1              15.0              17.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5377           161            14               6              13.0              15.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5385           161            33               1               4.0               6.0                            0.0         3.0
5386           161            33               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5384           161            33               1               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5394           161            43              27               2.0               4.0                           27.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5393           161            43              81               0.0               2.0                           81.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5396           161            45               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5395           161            45              14               3.0               5.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5400           161            48               0               4.0               6.0                            0.0         3.0
5401           161            48               0               6.0               8.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5397           161            48             220               0.0               2.0                          219.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5405           161            50               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5404           161            50              97               0.0               2.0                           97.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5415           161            68              78               2.0               4.0                           83.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5414           161            68             116               0.0               2.0                          111.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5423           161            79               0               5.0               7.0                            0.0         3.0
5424           161            79               0               7.0               9.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5420           161            79             110               1.0               3.0                          109.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5431           161            87               2               7.0               9.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5430           161            87               7               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5433           161            88               9               6.0               8.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5432           161            88              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5436           161            90              25               2.0               4.0                           31.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5435           161            90              88               0.0               2.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5441           161            97               3               7.0               9.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5440           161            97               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5444           161           100               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5442           161           100             190               0.0               2.0                          190.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5448           161           107              47               2.0               4.0                           53.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5447           161           107             153               0.0               2.0                          147.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5451           161           113               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5450           161           113             153               1.0               3.0                          153.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5455           161           114               0               5.0               7.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5452           161           114              73               1.0               3.0                           69.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5460           161           125               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5459           161           125              27               2.0               4.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5465           161           132               5              18.0              20.0                            5.0         3.0
5466           161           132               5              20.0              22.0                            5.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5464           161           132               9              14.0              16.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5470           161           137               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5469           161           137              71               0.0               2.0                           71.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5474           161           138               1              12.0              14.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5473           161           138               6               6.0               8.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5476           161           140              40               2.0               4.0                           48.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5475           161           140             116               0.0               2.0                          108.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5478           161           141              29               2.0               4.0                           36.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5477           161           141             293               0.0               2.0                          286.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5480           161           142              23               2.0               4.0                           27.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5479           161           142             300               0.0               2.0                          295.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5483           161           143               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5481           161           143             146               1.0               3.0                          146.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5486           161           144               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5484           161           144              79               2.0               4.0                           78.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5490           161           148              11               4.0               6.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5489           161           148              40               2.0               4.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5492           161           151               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5491           161           151              26               2.0               4.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5498           161           161               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5497           161           161             162               0.0               2.0                          161.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5501           161           163               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5500           161           163             192               0.0               2.0                          192.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5503           161           164               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5502           161           164             370               0.0               2.0                          370.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5505           161           166               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5504           161           166              20               3.0               5.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5508           161           170               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5507           161           170             277               0.0               2.0                          277.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5515           161           181               2              10.0              12.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5513           161           181               3               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5518           161           186               6               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5517           161           186             268               0.0               2.0                          268.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5531           161           211               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5530           161           211              68               2.0               4.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5540           161           229               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5539           161           229             209               0.0               2.0                          209.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5542           161           230               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5541           161           230             279               0.0               2.0                          279.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5545           161           231               8               6.0               8.0                            8.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5543           161           231              72               2.0               4.0                           71.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5549           161           234              27               2.0               4.0                           28.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5548           161           234             367               0.0               2.0                          365.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5551           161           236               3               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5550           161           236             540               1.0               3.0                          539.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5554           161           237               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5552           161           237             537               0.0               2.0                          534.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5556           161           238              45               3.0               5.0                           50.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5555           161           238              96               1.0               3.0                           91.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5558           161           239              14               3.0               5.0                           15.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5557           161           239             198               1.0               3.0                          197.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5563           161           246               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5561           161           246             118               0.0               2.0                          112.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5566           161           249              13               3.0               5.0                           14.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5565           161           249             115               1.0               3.0                          114.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5571           161           256               5               7.0               9.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5570           161           256               9               5.0               7.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5575           161           261               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5574           161           261               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5577           161           262               5               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5576           161           262             113               1.0               3.0                          112.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5579           161           263               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5578           161           263             166               1.0               3.0                          165.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5583           162             4               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5582           162             4              21               2.0               4.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5587           162             7               0               6.0               8.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5584           162             7               9               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5589           162            13               3               7.0               9.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5588           162            13              20               5.0               7.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5593           162            24               7               4.0               6.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5592           162            24              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5595           162            25               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5594           162            25               5               6.0               8.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5602           162            40               1              10.0              12.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5600           162            40               4               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5604           162            41               4               5.0               7.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5603           162            41              18               3.0               5.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5606           162            42               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5605           162            42               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5608           162            43              23               2.0               4.0                           23.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5607           162            43              33               0.0               2.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5610           162            45               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5609           162            45               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5612           162            48               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5611           162            48             153               0.0               2.0                          152.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5623           162            66               2               7.0               9.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5622           162            66               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5625           162            68               6               3.0               5.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5624           162            68             126               1.0               3.0                          125.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5628           162            74               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5627           162            74               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5630           162            75               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5629           162            75              32               2.0               4.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5633           162            76               0              12.0              14.0                            0.0         2.0
5634           162            76               0              14.0              16.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5631           162            76               1              10.0              12.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5636           162            79               8               3.0               5.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5635           162            79             112               1.0               3.0                          112.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5643           162            87               0               7.0               9.0                            0.0         3.0
5644           162            87               0               9.0              11.0                            0.0         4.0
5645           162            87               0              11.0              13.0                            0.0         5.0
5646           162            87               0              13.0              15.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5641           162            87               4               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5652           162            95               0              10.0              12.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5649           162            95               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5658           162           100               0               4.0               6.0                            0.0         3.0
5659           162           100               0               6.0               8.0                            0.0         4.0
5660           162           100               0               8.0              10.0                            0.0         5.0
5661           162           100               0              10.0              12.0                            0.0         6.0
5662           162           100               0              12.0              14.0                            0.0         7.0
5663           162           100               0              14.0              16.0                            0.0         8.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5655           162           100              94               0.0               2.0                           94.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5665           162           106               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5664           162           106               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5667           162           107              29               2.0               4.0                           32.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5666           162           107             165               0.0               2.0                          162.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5671           162           113               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5670           162           113              24               0.0               2.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5673           162           114              10               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5672           162           114              54               1.0               3.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5675           162           116               4               7.0               9.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5674           162           116               8               5.0               7.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5679           162           125               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5678           162           125              14               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5682           162           129               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5681           162           129               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5688           162           137               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5687           162           137              76               0.0               2.0                           75.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5691           162           138              11              11.0              13.0                           11.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5690           162           138              12               7.0               9.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5693           162           140              20               2.0               4.0                           22.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5692           162           140             138               0.0               2.0                          136.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5695           162           141               6               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5694           162           141             257               0.0               2.0                          257.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5697           162           142              47               2.0               4.0                           51.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5696           162           142             141               0.0               2.0                          136.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5699           162           143               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5698           162           143              90               1.0               3.0                           90.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5702           162           144               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5701           162           144              20               1.0               3.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5706           162           148               8               4.0               6.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5705           162           148              44               2.0               4.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5708           162           151              10               4.0               6.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5707           162           151              18               2.0               4.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5712           162           158               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5711           162           158              44               2.0               4.0                           44.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5718           162           161               0               4.0               6.0                            0.0         3.0
5719           162           161               0               6.0               8.0                            0.0         4.0
5720           162           161               0               8.0              10.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5715           162           161             133               0.0               2.0                          133.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5723           162           162               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5721           162           162              80               0.0               2.0                           80.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5725           162           163               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5724           162           163             122               0.0               2.0                          122.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5727           162           164               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5726           162           164             163               0.0               2.0                          163.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5730           162           166               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5729           162           166               7               4.0               6.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5737           162           179               0               5.0               7.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5735           162           179               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5741           162           186               6               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5740           162           186             163               0.0               2.0                          161.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5744           162           189               0              10.0              12.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5742           162           189               2               8.0              10.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5756           162           211              17               3.0               5.0                           17.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5755           162           211              19               1.0               3.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5764           162           229               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5763           162           229             147               0.0               2.0                          147.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5766           162           230               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5765           162           230             220               0.0               2.0                          220.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5769           162           231              10               6.0               8.0                           10.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5767           162           231              47               2.0               4.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5771           162           232               9               4.0               6.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5770           162           232              13               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5774           162           234              24               2.0               4.0                           25.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5773           162           234             164               0.0               2.0                          163.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5777           162           236               1               4.0               6.0                            1.0         3.0
5778           162           236               1               6.0               8.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5775           162           236             249               0.0               2.0                          241.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5780           162           237               7               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5779           162           237             338               0.0               2.0                          336.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5782           162           238               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5781           162           238              87               2.0               4.0                           87.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5784           162           239              15               3.0               5.0                           17.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5783           162           239             117               1.0               3.0                          115.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5787           162           244               2               8.0              10.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5786           162           244               3               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5789           162           246               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5788           162           246              92               1.0               3.0                           92.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5795           162           249               0               5.0               7.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5792           162           249              70               1.0               3.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5797           162           255               2               7.0               9.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5796           162           255               8               5.0               7.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5799           162           256               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5798           162           256              10               5.0               7.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5806           162           262               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5805           162           262             114               1.0               3.0                          114.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5808           162           263               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5807           162           263             172               1.0               3.0                          172.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5821           163            13               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5820           163            13              14               4.0               6.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5826           163            25               1               9.0              11.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5825           163            25               3               7.0               9.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5831           163            40               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5830           163            40               2               8.0              10.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5834           163            42               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5833           163            42              12               3.0               5.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5836           163            43              13               2.0               4.0                           14.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5835           163            43              46               0.0               2.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5838           163            45               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5837           163            45               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5841           163            48               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5839           163            48             165               0.0               2.0                          165.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5843           163            50               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5842           163            50              60               0.0               2.0                           59.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5851           163            68               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5850           163            68              42               0.0               2.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5856           163            75               9               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5855           163            75              22               1.0               3.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5858           163            79               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5857           163            79              40               2.0               4.0                           40.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5865           163            90               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5864           163            90              59               1.0               3.0                           59.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5872           163           107               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5871           163           107              67               1.0               3.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5875           163           112               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5874           163           112               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5878           163           114               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5877           163           114              36               2.0               4.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5880           163           116               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5879           163           116               3               5.0               7.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5882           163           125               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5881           163           125              13               2.0               4.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5885           163           132               8              18.0              20.0                            8.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5884           163           132              14              14.0              16.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5891           163           140              10               2.0               4.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5890           163           140              74               0.0               2.0                           71.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5893           163           141               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5892           163           141             127               0.0               2.0                          126.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5896           163           143               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5895           163           143             135               0.0               2.0                          135.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5898           163           144               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5897           163           144              18               3.0               5.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5902           163           148               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5901           163           148              13               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5908           163           161               1               2.0               4.0                            1.0         2.0
5909           163           161               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5907           163           161             230               0.0               2.0                          230.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5913           163           163               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5911           163           163              24               0.0               2.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5915           163           164               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5914           163           164             147               0.0               2.0                          146.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5918           163           166               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5916           163           166              24               2.0               4.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5920           163           170               4               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5919           163           170             122               0.0               2.0                          120.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5927           163           186              10               2.0               4.0                           11.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5926           163           186             123               0.0               2.0                          122.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5935           163           211               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5934           163           211              32               3.0               5.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5946           163           231               2               7.0               9.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5944           163           231              54               3.0               5.0                           54.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5948           163           232               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5947           163           232               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5950           163           233               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5949           163           233              75               0.0               2.0                           75.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5954           163           236              79               2.0               4.0                           86.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5953           163           236             242               0.0               2.0                          235.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5956           163           237               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5955           163           237             265               0.0               2.0                          264.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5958           163           238               7               3.0               5.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5957           163           238             119               1.0               3.0                          118.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5963           163           246               9               3.0               5.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5962           163           246             109               1.0               3.0                          109.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5966           163           249               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5965           163           249              74               2.0               4.0                           74.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5969           163           255               0               6.0               8.0                            0.0         2.0
5970           163           255               0               8.0              10.0                            0.0         3.0
5971           163           255               0              10.0              12.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5967           163           255               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5976           163           261               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5975           163           261               7               4.0               6.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5978           163           262               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5977           163           262              73               1.0               3.0                           73.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5980           163           263               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5979           163           263             101               1.0               3.0                          100.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5981           164             1               5              16.0              18.0                            0.0         2.0
5983           164             1               2              18.0              20.0                            0.0         3.0
5984           164             1               1              20.0              22.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5982           164             1               2              14.0              16.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5987           164             7               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5986           164             7               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5991           164            13               7               5.0               7.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
5990           164            13              10               3.0               5.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6002           164            42               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6001           164            42               6               5.0               7.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6006           164            45               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6005           164            45               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6008           164            48               6               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6007           164            48              86               0.0               2.0                           84.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6015           164            66               1               8.0              10.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6013           164            66               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6017           164            68               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6016           164            68              88               0.0               2.0                           87.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6019           164            74               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6018           164            74               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6024           164            79               0               5.0               7.0                            0.0         3.0
6025           164            79               0               7.0               9.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6021           164            79              82               1.0               3.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6032           164            90               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6031           164            90              52               0.0               2.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6037           164           107               3               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6036           164           107              81               0.0               2.0                           79.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6039           164           112               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6038           164           112               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6041           164           113               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6040           164           113             101               0.0               2.0                          101.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6052           164           132               1              19.0              21.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6051           164           132               4              13.0              15.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6055           164           137               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6054           164           137              47               0.0               2.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6058           164           138               2              12.0              14.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6056           164           138              28               8.0              10.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6061           164           141               3               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6060           164           141              56               1.0               3.0                           55.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6063           164           142               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6062           164           142              65               1.0               3.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6065           164           143               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6064           164           143              34               1.0               3.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6067           164           144               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6066           164           144              54               1.0               3.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6070           164           148               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6069           164           148              21               2.0               4.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6072           164           151               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6071           164           151               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6076           164           161               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6075           164           161             175               0.0               2.0                          175.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6079           164           163               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6078           164           163             102               0.0               2.0                          101.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6081           164           164               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6080           164           164              28               0.0               2.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6089           164           186               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6088           164           186              44               0.0               2.0                           44.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6100           164           223               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6099           164           223               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6107           164           229               7               2.0               4.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6106           164           229              87               0.0               2.0                           84.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6111           164           230               0               4.0               6.0                            0.0         3.0
6112           164           230               0               6.0               8.0                            0.0         4.0
6113           164           230               0               8.0              10.0                            0.0         5.0
6114           164           230               0              10.0              12.0                            0.0         6.0
6115           164           230               0              12.0              14.0                            0.0         7.0
6116           164           230               0              14.0              16.0                            0.0         8.0
6117           164           230               0              16.0              18.0                            0.0         9.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6108           164           230             200               0.0               2.0                          199.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6120           164           231               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6118           164           231              48               2.0               4.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6122           164           232               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6121           164           232              17               2.0               4.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6125           164           234               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6124           164           234             144               0.0               2.0                          144.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6127           164           236              19               3.0               5.0                           22.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6126           164           236              52               1.0               3.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6129           164           237               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6128           164           237             122               1.0               3.0                          122.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6131           164           238               6               4.0               6.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6130           164           238              19               2.0               4.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6133           164           239               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6132           164           239              44               2.0               4.0                           44.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6138           164           246               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6137           164           246              70               0.0               2.0                           70.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6141           164           249               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6140           164           249              62               1.0               3.0                           62.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6148           164           261               3               6.0               8.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6147           164           261               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6150           164           262               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6149           164           262              33               2.0               4.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6164           166            43               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6163           166            43              16               1.0               3.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6169           166            68               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6168           166            68               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6178           166           107               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6177           166           107               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6192           166           142               5               3.0               5.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6191           166           142              28               1.0               3.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6204           166           162               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6203           166           162               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6206           166           163               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6205           166           163              11               2.0               4.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6211           166           166               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6208           166           166              40               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6214           166           186               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6213           166           186               7               4.0               6.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6221           166           230               4               5.0               7.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6220           166           230               7               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6226           166           236               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6225           166           236              31               1.0               3.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6228           166           237               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6227           166           237              13               2.0               4.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6230           166           238               5               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6229           166           238              85               0.0               2.0                           57.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6232           166           239               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6231           166           239              78               1.0               3.0                           78.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6248           170             4               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6247           170             4              10               1.0               3.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6253           170            13               2               7.0               9.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6252           170            13               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6256           170            17               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6255           170            17               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6265           170            41               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6264           170            41               8               4.0               6.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6267           170            42               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6266           170            42              10               4.0               6.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6269           170            43               9               3.0               5.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6268           170            43              26               1.0               3.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6271           170            45               1               4.0               6.0                            1.0         2.0
6272           170            45               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6270           170            45               8               2.0               4.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6274           170            48              11               2.0               4.0                           11.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6273           170            48              84               0.0               2.0                           84.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6281           170            55               0              16.0              18.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6279           170            55               1              14.0              16.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6288           170            68               2               4.0               6.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6286           170            68              86               0.0               2.0                           85.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6292           170            75               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6291           170            75              23               2.0               4.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6294           170            79              39               2.0               4.0                           40.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6293           170            79              80               0.0               2.0                           79.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6297           170            87               9               5.0               7.0                           11.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6296           170            87              16               3.0               5.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6300           170            90               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6299           170            90              66               0.0               2.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6303           170            97               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6302           170            97               4               6.0               8.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6306           170           100               0               2.0               4.0                            0.0         2.0
6307           170           100               0               4.0               6.0                            0.0         3.0
6308           170           100               0               6.0               8.0                            0.0         4.0
6309           170           100               0               8.0              10.0                            0.0         5.0
6310           170           100               0              10.0              12.0                            0.0         6.0
6311           170           100               0              12.0              14.0                            0.0         7.0
6312           170           100               0              14.0              16.0                            0.0         8.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6304           170           100              94               0.0               2.0                           93.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6315           170           107               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6314           170           107             169               0.0               2.0                          169.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6317           170           112               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6316           170           112               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6319           170           113              14               2.0               4.0                           15.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6318           170           113             109               0.0               2.0                          108.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6321           170           114               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6320           170           114              71               1.0               3.0                           71.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6326           170           125               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6325           170           125              14               1.0               3.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6333           170           132               3              17.0              19.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6332           170           132               4              13.0              15.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6339           170           140               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6338           170           140              74               1.0               3.0                           74.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6341           170           141              58               2.0               4.0                           63.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6340           170           141              85               0.0               2.0                           79.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6343           170           142               2               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6342           170           142              96               1.0               3.0                           94.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6345           170           143               9               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6344           170           143              26               1.0               3.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6347           170           144               5               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6346           170           144              36               1.0               3.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6349           170           145               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6348           170           145               9               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6352           170           148              15               3.0               5.0                           15.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6351           170           148              38               1.0               3.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6357           170           158               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6356           170           158              36               1.0               3.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6359           170           161               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6358           170           161             155               0.0               2.0                          154.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6361           170           162               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6360           170           162             110               0.0               2.0                          110.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6363           170           163               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6362           170           163              74               0.0               2.0                           74.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6366           170           166               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6365           170           166               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6371           170           170               0               4.0               6.0                            0.0         3.0
6372           170           170               0               6.0               8.0                            0.0         4.0
6373           170           170               0               8.0              10.0                            0.0         5.0
6374           170           170               0              10.0              12.0                            0.0         6.0
6375           170           170               0              12.0              14.0                            0.0         7.0
6376           170           170               0              14.0              16.0                            0.0         8.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6368           170           170              65               0.0               2.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6384           170           186               1               4.0               6.0                            0.0         3.0
6385           170           186               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6383           170           186             150               0.0               2.0                          150.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6393           170           209               0               6.0               8.0                            0.0         2.0
6394           170           209               0               8.0              10.0                            0.0         3.0
6395           170           209               0              10.0              12.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6391           170           209              18               4.0               6.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6398           170           211               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6396           170           211              27               1.0               3.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6404           170           224               2               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6403           170           224              21               0.0               2.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6410           170           230               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6409           170           230             137               0.0               2.0                          136.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6413           170           231               3               6.0               8.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6411           170           231              42               2.0               4.0                           41.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6415           170           232               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6414           170           232              26               2.0               4.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6418           170           234               1               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6417           170           234             210               0.0               2.0                          208.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6420           170           236              16               3.0               5.0                           19.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6419           170           236             139               1.0               3.0                          136.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6422           170           237              26               2.0               4.0                           34.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6421           170           237             174               0.0               2.0                          166.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6424           170           238              17               4.0               6.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6423           170           238              26               2.0               4.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6426           170           239               4               4.0               6.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6425           170           239              49               2.0               4.0                           46.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6429           170           246               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6428           170           246              61               1.0               3.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6432           170           249               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6431           170           249             117               1.0               3.0                          117.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6441           170           261               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6440           170           261               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6444           170           263              21               3.0               5.0                           23.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6443           170           263              65               1.0               3.0                           63.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6464           186             1               8              17.0              19.0                            0.0         2.0
6466           186             1               3              19.0              21.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6465           186             1               4              15.0              17.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6469           186             7               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6468           186             7               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6472           186            13               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6471           186            13              22               2.0               4.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6475           186            17               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6474           186            17               2               8.0              10.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6481           186            25               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6480           186            25               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6485           186            33               0               7.0               9.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6482           186            33               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6491           186            41               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6490           186            41               9               4.0               6.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6493           186            42               4               7.0               9.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6492           186            42               9               5.0               7.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6495           186            43               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6494           186            43              14               1.0               3.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6498           186            48               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6497           186            48             137               0.0               2.0                          137.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6501           186            50              14               2.0               4.0                           14.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6500           186            50              64               0.0               2.0                           64.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6507           186            61               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6506           186            61               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6511           186            65               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6510           186            65               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6513           186            66               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6512           186            66               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6516           186            68               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6515           186            68              78               0.0               2.0                           78.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6521           186            75               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6520           186            75               9               3.0               5.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6523           186            79               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6522           186            79             140               1.0               3.0                          140.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6526           186            87              10               5.0               7.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6525           186            87              15               3.0               5.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6528           186            88               4               5.0               7.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6527           186            88               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6536           186           106               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6535           186           106               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6538           186           107               8               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6537           186           107             114               0.0               2.0                          113.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6540           186           112               4               6.0               8.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6539           186           112               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6543           186           114               1               3.0               5.0                            1.0         2.0
6544           186           114               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6542           186           114              52               1.0               3.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6550           186           125               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6549           186           125              30               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6554           186           132               1              19.0              21.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6552           186           132              15              15.0              17.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6556           186           137               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6555           186           137              72               0.0               2.0                           71.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6559           186           138               2              12.0              14.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6558           186           138               4               8.0              10.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6565           186           143               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6564           186           143              49               1.0               3.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6570           186           148               7               4.0               6.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6569           186           148              39               2.0               4.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6576           186           161               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6575           186           161             141               0.0               2.0                          141.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6578           186           162              17               2.0               4.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6577           186           162              95               0.0               2.0                           94.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6580           186           163               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6579           186           163             121               0.0               2.0                          120.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6582           186           164               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6581           186           164              60               0.0               2.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6584           186           166               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6583           186           166               8               4.0               6.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6591           186           181               2              10.0              12.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6589           186           181               5               6.0               8.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6596           186           190               0               8.0              10.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6594           186           190               1               6.0               8.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6605           186           211               4               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6604           186           211              31               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6611           186           226               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6610           186           226               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6615           186           229               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6614           186           229              70               1.0               3.0                           70.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6617           186           230               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6616           186           230             231               0.0               2.0                          231.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6619           186           231              21               3.0               5.0                           23.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6618           186           231              26               1.0               3.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6622           186           233               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6621           186           233              63               0.0               2.0                           62.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6624           186           234               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6623           186           234             102               0.0               2.0                          102.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6627           186           236               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6625           186           236              67               2.0               4.0                           67.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6629           186           237               4               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6628           186           237              66               1.0               3.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6631           186           238               8               4.0               6.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6630           186           238              29               2.0               4.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6633           186           239              24               3.0               5.0                           26.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6632           186           239              38               1.0               3.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6641           186           246               0               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6638           186           246             101               0.0               2.0                          101.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6643           186           247               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6642           186           247               2               8.0              10.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6645           186           249               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6644           186           249             126               0.0               2.0                          126.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6647           186           255               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6646           186           255               5               5.0               7.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6649           186           256               4               6.0               8.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6648           186           256               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6653           186           261               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6652           186           261              19               3.0               5.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6655           186           262               9               4.0               6.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6654           186           262              19               2.0               4.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6701           209            68               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6700           209            68               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6720           209           132               0              16.0              18.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6719           209           132               1              14.0              16.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6724           209           138               0              13.0              15.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6722           209           138               2              11.0              13.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6727           209           141               1               7.0               9.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6726           209           141               4               5.0               7.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6730           209           144               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6729           209           144              13               0.0               2.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6732           209           148               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6731           209           148              11               0.0               2.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6736           209           161               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6735           209           161               5               5.0               7.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6743           209           170               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6742           209           170               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6747           209           209               1               6.0               8.0                            0.0         4.0
6748           209           209               0               2.0               4.0                            0.0         2.0
6749           209           209               0               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6746           209           209               1               0.0               2.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6767           209           246               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6766           209           246               3               2.0               4.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6784           211            48               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6783           211            48              19               2.0               4.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6792           211            68               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6791           211            68              30               1.0               3.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6796           211            87               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6795           211            87              21               0.0               2.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6800           211            90               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6799           211            90              28               0.0               2.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6803           211           100               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6802           211           100              19               1.0               3.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6812           211           132               1              18.0              20.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6810           211           132               3              14.0              16.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6814           211           137               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6813           211           137               9               1.0               3.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6818           211           141               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6817           211           141              10               3.0               5.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6820           211           142               4               5.0               7.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6819           211           142              11               3.0               5.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6826           211           158               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6825           211           158              31               0.0               2.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6828           211           161               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6827           211           161              44               2.0               4.0                           44.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6830           211           162               1               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6829           211           162              20               2.0               4.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6832           211           163               2               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6831           211           163              18               2.0               4.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6834           211           164               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6833           211           164              37               1.0               3.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6837           211           170               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6836           211           170              37               1.0               3.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6841           211           186               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6840           211           186              31               1.0               3.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6846           211           211               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6845           211           211               4               0.0               2.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6852           211           230               6               4.0               6.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6851           211           230              46               2.0               4.0                           46.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6855           211           232               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6854           211           232              17               0.0               2.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6858           211           234               7               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6857           211           234              48               0.0               2.0                           48.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6860           211           236               4               6.0               8.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6859           211           236              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6865           211           246               8               3.0               5.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6864           211           246              31               1.0               3.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6870           211           261               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6869           211           261              15               0.0               2.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6873           211           262               0               7.0               9.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6871           211           262               3               5.0               7.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6918           224           114               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6917           224           114               2               0.0               2.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6959           226           132               3              10.0              12.0                            0.0         2.0
6961           226           132               1              12.0              14.0                            0.0         3.0
6962           226           132               1              14.0              16.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6960           226           132               1               8.0              10.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6990           229             4               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6989           229             4               7               2.0               4.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6993           229             7               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6992           229             7              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7000           229            41               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
6999           229            41               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7003           229            43              12               2.0               4.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7002           229            43              18               0.0               2.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7012           229            68               9               3.0               5.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7011           229            68              25               1.0               3.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7018           229            79               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7017           229            79              65               1.0               3.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7020           229            87               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7019           229            87               9               4.0               6.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7030           229           113               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7029           229           113              24               2.0               4.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7032           229           114               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7031           229           114              26               2.0               4.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7040           229           137               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7039           229           137              59               0.0               2.0                           59.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7043           229           138               1              11.0              13.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7042           229           138               4               7.0               9.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7046           229           141               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7045           229           141             145               0.0               2.0                          145.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7048           229           142               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7047           229           142              66               1.0               3.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7051           229           144               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7050           229           144               9               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7053           229           145               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7052           229           145              10               1.0               3.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7056           229           148               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7055           229           148              11               2.0               4.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7058           229           151               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7057           229           151               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7063           229           158               0               6.0               8.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7060           229           158              13               2.0               4.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7065           229           161               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7064           229           161             103               0.0               2.0                          102.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7068           229           163               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7067           229           163              51               0.0               2.0                           51.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7070           229           164               9               2.0               4.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7069           229           164              40               0.0               2.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7073           229           170               1               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7072           229           170              96               0.0               2.0                           94.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7078           229           181               1               9.0              11.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7077           229           181               3               7.0               9.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7089           229           223               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7087           229           223               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7097           229           229               0               4.0               6.0                            0.0         3.0
7098           229           229               0               6.0               8.0                            0.0         4.0
7099           229           229               0              10.0              12.0                            0.0         6.0
7100           229           229               0              12.0              14.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7092           229           229              29               0.0               2.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7102           229           230               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7101           229           230              66               0.0               2.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7105           229           231               4               5.0               7.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7103           229           231               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7113           229           238               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7112           229           238              24               2.0               4.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7115           229           239               9               3.0               5.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7114           229           239              34               1.0               3.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7120           229           249               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7119           229           249              31               2.0               4.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7135           230             7               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7134           230             7               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7138           230            13               9               5.0               7.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7137           230            13              21               3.0               5.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7145           230            24               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7144           230            24               4               2.0               4.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7152           230            41               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7150           230            41              14               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7156           230            43               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7154           230            43              51               0.0               2.0                           50.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7160           230            48               1               2.0               4.0                            1.0         2.0
7161           230            48               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7159           230            48             131               0.0               2.0                          131.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7164           230            50               1               4.0               6.0                            1.0         3.0
7165           230            50               0               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7163           230            50              99               0.0               2.0                           98.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7172           230            68              25               2.0               4.0                           28.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7171           230            68             135               0.0               2.0                          132.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7178           230            75               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7176           230            75              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7181           230            79               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7180           230            79              61               2.0               4.0                           61.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7185           230            87               9               6.0               8.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7184           230            87              13               4.0               6.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7187           230            88               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7186           230            88               7               4.0               6.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7190           230            90               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7189           230            90              73               0.0               2.0                           72.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7194           230            97               3               8.0              10.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7193           230            97               4               6.0               8.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7198           230           107               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7197           230           107              65               1.0               3.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7200           230           112               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7199           230           112               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7202           230           113               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7201           230           113              47               1.0               3.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7207           230           125               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7206           230           125              22               2.0               4.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7215           230           132               0              21.0              23.0                            0.0         5.0
7216           230           132               0              23.0              25.0                            0.0         6.0
7217           230           132               0              25.0              27.0                            0.0         7.0
7218           230           132               0              27.0              29.0                            0.0         8.0
7219           230           132               0              29.0              31.0                            0.0         9.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7213           230           132               2              13.0              15.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7224           230           138               1              13.0              15.0                            2.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7223           230           138               6               7.0               9.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7226           230           140               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7225           230           140              52               1.0               3.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7229           230           142               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7228           230           142             273               0.0               2.0                          273.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7231           230           143               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7230           230           143             116               0.0               2.0                          116.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7233           230           144               5               4.0               6.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7232           230           144              46               2.0               4.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7237           230           148               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7236           230           148              26               3.0               5.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7239           230           151               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7238           230           151              29               2.0               4.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7241           230           152               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7240           230           152               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7244           230           158               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7242           230           158              55               1.0               3.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7250           230           164               2               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7249           230           164             139               0.0               2.0                          138.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7252           230           166               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7251           230           166              13               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7255           230           170               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7254           230           170             118               0.0               2.0                          117.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7262           230           186               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7261           230           186             251               0.0               2.0                          251.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7269           230           211               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7268           230           211              38               2.0               4.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7273           230           223               0               7.0               9.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7271           230           223               3               5.0               7.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7277           230           229               4               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7276           230           229             125               0.0               2.0                          123.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7280           230           230               2               4.0               6.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7278           230           230             100               0.0               2.0                          100.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7283           230           231               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7281           230           231              36               2.0               4.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7286           230           232               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7284           230           232              17               3.0               5.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7288           230           233               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7287           230           233              62               0.0               2.0                           61.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7291           230           236              10               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7290           230           236             163               1.0               3.0                          163.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7293           230           237              21               2.0               4.0                           23.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7292           230           237             139               0.0               2.0                          137.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7295           230           238               8               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7294           230           238              93               1.0               3.0                           91.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7299           230           244               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7298           230           244               6               6.0               8.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7302           230           246               1              18.0              20.0                            0.0        10.0
7303           230           246               0               4.0               6.0                            0.0         3.0
7304           230           246               0               6.0               8.0                            0.0         4.0
7305           230           246               0               8.0              10.0                            0.0         5.0
7306           230           246               0              10.0              12.0                            0.0         6.0
7307           230           246               0              12.0              14.0                            0.0         7.0
7308           230           246               0              14.0              16.0                            0.0         8.0
7309           230           246               0              16.0              18.0                            0.0         9.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7300           230           246             130               0.0               2.0                          129.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7313           230           249               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7312           230           249              86               1.0               3.0                           85.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7317           230           256               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7316           230           256               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7321           230           261               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7320           230           261               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7323           230           262               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7322           230           262              43               2.0               4.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7325           230           263              12               3.0               5.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7324           230           263              41               1.0               3.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7326           231             1               6              14.0              16.0                            0.0         2.0
7327           231             1               3              12.0              14.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7327           231             1               3              12.0              14.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7329           231             4               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7328           231             4               6               1.0               3.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7335           231            24               1               9.0              11.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7334           231            24               3               7.0               9.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7337           231            25               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7336           231            25               4               2.0               4.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7339           231            33               1               3.0               5.0                            1.0         2.0
7340           231            33               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7338           231            33              13               1.0               3.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7342           231            34               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7341           231            34               2               2.0               4.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7350           231            43               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7348           231            43               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7355           231            48               0               6.0               8.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7352           231            48              34               2.0               4.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7363           231            66               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7362           231            66               9               1.0               3.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7365           231            68              26               3.0               5.0                           26.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7364           231            68              57               1.0               3.0                           57.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7371           231            79               8               4.0               6.0                            8.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7369           231            79              38               0.0               2.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7373           231            87               9               2.0               4.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7372           231            87              48               0.0               2.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7375           231            88               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7374           231            88              17               0.0               2.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7378           231            90               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7377           231            90              41               1.0               3.0                           41.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7381           231           100               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7380           231           100              18               2.0               4.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7385           231           107               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7383           231           107              29               1.0               3.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7387           231           112               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7386           231           112               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7390           231           113               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7388           231           113              50               0.0               2.0                           50.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7392           231           114               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7391           231           114              37               0.0               2.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7402           231           132               0              13.0              15.0                            0.0         2.0
7403           231           132               0              21.0              23.0                            0.0         6.0
7404           231           132               0              25.0              27.0                            0.0         8.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7401           231           132               1              11.0              13.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7406           231           137               7               4.0               6.0                            6.0         2.0
7407           231           137               6               2.0               4.0                            6.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7407           231           137               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7411           231           138               1              17.0              19.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7408           231           138               6              11.0              13.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7418           231           142               5               5.0               7.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7417           231           142               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7424           231           148               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7423           231           148              32               0.0               2.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7428           231           158               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7427           231           158              66               0.0               2.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7431           231           161               3               6.0               8.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7429           231           161              37               2.0               4.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7434           231           162               5               7.0               9.0                            6.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7433           231           162              11               3.0               5.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7436           231           163              10               5.0               7.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7435           231           163              18               3.0               5.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7439           231           164               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7437           231           164              36               2.0               4.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7444           231           170               9               4.0               6.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7442           231           170              24               2.0               4.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7447           231           181               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7446           231           181               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7452           231           195               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7451           231           195               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7459           231           224               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7458           231           224               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7466           231           229               8               6.0               8.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7465           231           229              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7468           231           230              32               4.0               6.0                           32.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7467           231           230              46               2.0               4.0                           46.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7471           231           231               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7469           231           231              33               0.0               2.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7473           231           232               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7472           231           232              14               0.0               2.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7478           231           233               0               9.0              11.0                            0.0         4.0
7479           231           233               0              11.0              13.0                            0.0         5.0
7480           231           233               0              13.0              15.0                            0.0         6.0
7481           231           233               0              15.0              17.0                            0.0         7.0
7482           231           233               0              17.0              19.0                            0.0         8.0
7483           231           233               0              19.0              21.0                            0.0         9.0
7484           231           233               0              21.0              23.0                            0.0        10.0
7485           231           233               0              23.0              25.0                            0.0        11.0
7486           231           233               0              25.0              27.0                            0.0        12.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7475           231           233               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7488           231           234               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7487           231           234              60               1.0               3.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7491           231           236               4               9.0              11.0                            4.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7489           231           236              10               5.0               7.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7494           231           237               6               6.0               8.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7492           231           237              13               4.0               6.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7496           231           238               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7495           231           238              13               5.0               7.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7498           231           239               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7497           231           239              22               4.0               6.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7500           231           243               1              12.0              14.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7499           231           243               2              10.0              12.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7502           231           246              21               3.0               5.0                           24.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7501           231           246              48               1.0               3.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7505           231           249               7               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7504           231           249              90               0.0               2.0                           89.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7510           231           256               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7508           231           256               5               2.0               4.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7514           231           262               1               9.0              11.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7513           231           262               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7569           233            41               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7568           233            41               7               4.0               6.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7571           233            42               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7570           233            42               3               5.0               7.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7573           233            43               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7572           233            43               9               1.0               3.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7577           233            48               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7576           233            48              33               0.0               2.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7582           233            52               0               8.0              10.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7580           233            52               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7591           233            68               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7590           233            68              37               1.0               3.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7593           233            74               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7592           233            74               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7597           233            79               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7596           233            79              68               1.0               3.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7608           233           100               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7606           233           100              36               0.0               2.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7621           233           132               1              19.0              21.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7619           233           132               4              13.0              15.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7626           233           140              10               2.0               4.0                           11.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7625           233           140              73               0.0               2.0                           72.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7628           233           141               7               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7627           233           141              84               0.0               2.0                           83.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7630           233           142               4               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7629           233           142              38               1.0               3.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7632           233           143               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7631           233           143              12               1.0               3.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7634           233           144               1               4.0               6.0                            1.0         2.0
7635           233           144               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7633           233           144              20               2.0               4.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7641           233           158               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7640           233           158               8               2.0               4.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7645           233           163               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7644           233           163              45               0.0               2.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7647           233           164               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7646           233           164              51               0.0               2.0                           51.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7663           233           224               2               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7662           233           224              22               0.0               2.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7665           233           226               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7664           233           226               4               2.0               4.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7670           233           231               2               6.0               8.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7668           233           231               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7672           233           232               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7671           233           232              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7674           233           233               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7673           233           233              17               0.0               2.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7677           233           236               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7676           233           236              49               1.0               3.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7679           233           237               7               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7678           233           237              74               0.0               2.0                           74.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7681           233           238               2               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7680           233           238              10               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7683           233           239               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7682           233           239              29               2.0               4.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7694           233           262               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7693           233           262              49               1.0               3.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7696           233           263               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7695           233           263              44               1.0               3.0                           44.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7703           234            13               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7702           234            13              30               2.0               4.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7714           234            41               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7713           234            41               6               4.0               6.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7716           234            42               1               8.0              10.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7715           234            42               4               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7719           234            43               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7717           234            43              19               1.0               3.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7721           234            45               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7720           234            45               7               1.0               3.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7723           234            48               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7722           234            48             106               1.0               3.0                          106.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7725           234            49               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7724           234            49               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7727           234            50               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7726           234            50              52               1.0               3.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7731           234            65               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7729           234            65               3               2.0               4.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7735           234            68               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7734           234            68             177               0.0               2.0                          177.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7741           234            79               6               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7740           234            79             179               0.0               2.0                          178.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7751           234            95               2               9.0              11.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7750           234            95               2               7.0               9.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7753           234            97               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7752           234            97               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7756           234           107               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7755           234           107              86               0.0               2.0                           86.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7763           234           125               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7762           234           125              37               0.0               2.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7768           234           132               1              18.0              20.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7767           234           132               2              14.0              16.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7773           234           141               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7772           234           141              49               2.0               4.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7775           234           142              14               3.0               5.0                           17.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7774           234           142              50               1.0               3.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7777           234           143               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7776           234           143              47               2.0               4.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7780           234           145               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7779           234           145               7               2.0               4.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7783           234           148               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7782           234           148              70               1.0               3.0                           70.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7788           234           158               2               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7787           234           158             106               0.0               2.0                          105.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7792           234           161               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7790           234           161             154               0.0               2.0                          153.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7794           234           162              21               2.0               4.0                           25.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7793           234           162              68               0.0               2.0                           64.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7796           234           163               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7795           234           163              82               1.0               3.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7799           234           166               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7798           234           166               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7803           234           181               2               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7802           234           181               5               5.0               7.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7805           234           186               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7804           234           186             172               0.0               2.0                          172.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7810           234           209               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7809           234           209              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7812           234           211               5               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7811           234           211              82               0.0               2.0                           80.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7820           234           229               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7819           234           229              72               1.0               3.0                           72.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7822           234           230              21               2.0               4.0                           26.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7821           234           230             169               0.0               2.0                          164.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7824           234           231               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7823           234           231             100               1.0               3.0                          100.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7826           234           232              10               3.0               5.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7825           234           232              26               1.0               3.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7828           234           233               3               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7827           234           233              62               0.0               2.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7830           234           234               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7829           234           234              45               0.0               2.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7833           234           236               6               4.0               6.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7832           234           236             103               2.0               4.0                          102.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7835           234           237              14               3.0               5.0                           15.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7834           234           237              94               1.0               3.0                           93.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7837           234           238               5               5.0               7.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7836           234           238              35               3.0               5.0                           35.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7839           234           239              23               4.0               6.0                           24.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7838           234           239              37               2.0               4.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7841           234           243               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7840           234           243               2               8.0              10.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7843           234           244               2              10.0              12.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7842           234           244               4               8.0              10.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7845           234           246              23               2.0               4.0                           27.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7844           234           246             118               0.0               2.0                          114.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7850           234           249               0               4.0               6.0                            0.0         3.0
7851           234           249               0               6.0               8.0                            0.0         4.0
7852           234           249               0               8.0              10.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7847           234           249             188               0.0               2.0                          188.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7858           234           261               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7857           234           261               9               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7860           234           262               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7859           234           262              27               3.0               5.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7862           234           263              12               4.0               6.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7861           234           263              29               2.0               4.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7869           236             7               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7868           236             7               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7873           236            24               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7872           236            24              21               1.0               3.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7883           236            43               6               2.0               4.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7882           236            43             137               0.0               2.0                          133.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7887           236            48               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7885           236            48              47               1.0               3.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7893           236            68               1               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7892           236            68              40               3.0               5.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7898           236            74               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7897           236            74             141               1.0               3.0                          139.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7901           236            75               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7899           236            75             147               0.0               2.0                          144.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7903           236            79              17               5.0               7.0                           17.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7902           236            79              22               3.0               5.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7916           236           107              10               4.0               6.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7915           236           107              39               2.0               4.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7919           236           113               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7918           236           113              36               3.0               5.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7923           236           114               0               8.0              10.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7920           236           114              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7928           236           125               1               8.0              10.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7927           236           125               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7935           236           137               5               4.0               6.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7934           236           137              13               2.0               4.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7937           236           138               6               9.0              11.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7936           236           138              20               7.0               9.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7939           236           140               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7938           236           140             171               0.0               2.0                          170.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7941           236           141               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7940           236           141             325               0.0               2.0                          324.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7945           236           142               0               5.0               7.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7942           236           142             277               1.0               3.0                          277.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7947           236           143               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7946           236           143              86               1.0               3.0                           86.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7949           236           144               6               6.0               8.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7948           236           144               9               4.0               6.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7951           236           145               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7950           236           145               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7958           236           151               0               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7955           236           151              59               0.0               2.0                           52.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7961           236           158               5               6.0               8.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7960           236           158              15               4.0               6.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7963           236           161               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7962           236           161             237               1.0               3.0                          237.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7965           236           162              63               2.0               4.0                           70.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7964           236           162             112               0.0               2.0                          105.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7967           236           163              32               2.0               4.0                           37.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7966           236           163             110               0.0               2.0                          105.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7969           236           164               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7968           236           164              48               2.0               4.0                           48.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7971           236           166              10               3.0               5.0                           11.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7970           236           166              38               1.0               3.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7976           236           170              11               3.0               5.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7975           236           170              54               1.0               3.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7981           236           186               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7979           236           186              41               2.0               4.0                           41.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7991           236           211               5               6.0               8.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7990           236           211              10               4.0               6.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7996           236           226               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7995           236           226               6               3.0               5.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7998           236           229               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
7997           236           229             133               1.0               3.0                          133.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8001           236           230               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8000           236           230              17               0.0               2.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8008           236           233              16               3.0               5.0                           16.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8007           236           233              36               1.0               3.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8010           236           234               7               4.0               6.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8009           236           234              56               2.0               4.0                           56.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8014           236           236               0               4.0               6.0                            0.0         3.0
8015           236           236               0               6.0               8.0                            0.0         4.0
8016           236           236               0               8.0              10.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8011           236           236             437               0.0               2.0                          436.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8020           236           237               1               6.0               8.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8017           236           237             799               0.0               2.0                          799.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8023           236           238               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8021           236           238             283               0.0               2.0                          280.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8025           236           239              21               2.0               4.0                           21.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8024           236           239             286               0.0               2.0                          286.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8028           236           243               2               8.0              10.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8027           236           243               6               6.0               8.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8032           236           246               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8030           236           246              18               3.0               5.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8037           236           249               1               8.0              10.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8035           236           249               4               2.0               4.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8045           237             1               4              18.0              20.0                            0.0         2.0
8046           237             1               2              20.0              22.0                            0.0         3.0
8047           237             1               1              16.0              18.0                            0.0         1.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8047           237             1               1              16.0              18.0                            0.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8050           237             7               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8049           237             7              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8062           237            42               8               4.0               6.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8061           237            42              10               2.0               4.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8064           237            43              17               2.0               4.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8063           237            43             103               0.0               2.0                          102.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8066           237            45               1               5.0               7.0                            1.0         2.0
8067           237            45               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8065           237            45               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8069           237            48              48               2.0               4.0                           51.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8068           237            48              66               0.0               2.0                           63.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8081           237            79               8               4.0               6.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8080           237            79              32               2.0               4.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8083           237            80               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8082           237            80               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8091           237            88               0               8.0              10.0                            0.0         2.0
8092           237            88               0              10.0              12.0                            0.0         3.0
8093           237            88               0              12.0              14.0                            0.0         4.0
8094           237            88               0              14.0              16.0                            0.0         5.0
8095           237            88               0              16.0              18.0                            0.0         6.0
8096           237            88               0              18.0              20.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8089           237            88               3               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8098           237            90               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8097           237            90              36               2.0               4.0                           36.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8102           237            95               1               9.0              11.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8101           237            95               2               7.0               9.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8105           237           100               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8104           237           100              49               1.0               3.0                           48.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8107           237           107               7               3.0               5.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8106           237           107              61               1.0               3.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8109           237           112               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8108           237           112               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8112           237           113               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8110           237           113              68               2.0               4.0                           68.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8115           237           114               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8113           237           114              32               2.0               4.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8119           237           125               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8118           237           125              11               3.0               5.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8127           237           132               1              21.0              23.0                            1.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8125           237           132               4              13.0              15.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8130           237           137               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8129           237           137              32               1.0               3.0                           32.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8135           237           138               0              12.0              14.0                            0.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8133           237           138               6               6.0               8.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8138           237           141               6               2.0               4.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8137           237           141             256               0.0               2.0                          256.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8140           237           142               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8139           237           142             312               0.0               2.0                          312.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8142           237           143               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8141           237           143              98               1.0               3.0                           97.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8144           237           144               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8143           237           144              16               3.0               5.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8146           237           145               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8145           237           145               3               1.0               3.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8151           237           151              18               3.0               5.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8150           237           151              27               1.0               3.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8156           237           158               1               7.0               9.0                            1.0         3.0
8157           237           158               1               9.0              11.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8154           237           158              33               3.0               5.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8159           237           161               1               4.0               6.0                            1.0         3.0
8160           237           161               0               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8158           237           161             351               0.0               2.0                          349.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8162           237           162               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8161           237           162             299               0.0               2.0                          298.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8164           237           163               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8163           237           163             150               0.0               2.0                          150.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8166           237           164              39               2.0               4.0                           40.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8165           237           164              61               0.0               2.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8168           237           166               3               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8167           237           166              26               2.0               4.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8171           237           170              27               2.0               4.0                           30.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8170           237           170             107               0.0               2.0                          104.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8180           237           186               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8179           237           186              76               1.0               3.0                           76.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8188           237           211               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8187           237           211              23               3.0               5.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8192           237           224               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8191           237           224               9               2.0               4.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8194           237           226               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8193           237           226               5               2.0               4.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8196           237           229               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8195           237           229             214               0.0               2.0                          214.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8198           237           230              25               2.0               4.0                           28.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8197           237           230             140               0.0               2.0                          137.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8202           237           231               1               9.0              11.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8199           237           231              16               3.0               5.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8205           237           232               0               6.0               8.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8203           237           232               8               4.0               6.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8207           237           233              12               2.0               4.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8206           237           233              62               0.0               2.0                           61.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8209           237           234              12               3.0               5.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8208           237           234              83               1.0               3.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8212           237           236              10               2.0               4.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8211           237           236            1043               0.0               2.0                         1040.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8217           237           237               0               6.0               8.0                            0.0         4.0
8218           237           237               0               8.0              10.0                            0.0         5.0
8219           237           237               0              10.0              12.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8213           237           237             402               0.0               2.0                          402.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8224           237           238               0               7.0               9.0                            0.0         4.0
8225           237           238               0               9.0              11.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8220           237           238             169               1.0               3.0                          169.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8227           237           239               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8226           237           239             217               1.0               3.0                          217.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8230           237           244               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8229           237           244               8               5.0               7.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8232           237           246               6               4.0               6.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8231           237           246              45               2.0               4.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8235           237           247               0               7.0               9.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8233           237           247               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8238           237           249              10               4.0               6.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8237           237           249              47               2.0               4.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8241           237           256               2               7.0               9.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8240           237           256               5               5.0               7.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8246           237           262              35               2.0               4.0                           39.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8245           237           262             238               0.0               2.0                          234.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8248           237           263               9               2.0               4.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8247           237           263             301               0.0               2.0                          299.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8263           238            41              15               2.0               4.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8262           238            41              49               0.0               2.0                           41.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8265           238            42              10               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8264           238            42              22               1.0               3.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8267           238            43               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8266           238            43              39               0.0               2.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8269           238            48               4               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8268           238            48              52               1.0               3.0                           50.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8271           238            50               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8270           238            50              11               1.0               3.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8273           238            68               5               4.0               6.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8272           238            68               8               2.0               4.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8275           238            74               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8274           238            74              31               1.0               3.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8277           238            75              13               2.0               4.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8276           238            75              51               0.0               2.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8280           238            79               1               8.0              10.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8279           238            79               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8286           238            90               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8285           238            90               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8290           238           100               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8289           238           100               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8293           238           113               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8292           238           113              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8296           238           116               1               4.0               6.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8295           238           116              22               2.0               4.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8304           238           138               3              10.0              12.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8303           238           138              10               8.0              10.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8306           238           140               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8305           238           140              22               1.0               3.0                           22.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8308           238           141               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8307           238           141              78               1.0               3.0                           77.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8310           238           142               8               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8309           238           142             229               0.0               2.0                          226.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8312           238           143              10               2.0               4.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8311           238           143             120               0.0               2.0                          120.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8321           238           158               0               6.0               8.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8319           238           158               5               4.0               6.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8325           238           163               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8324           238           163              34               1.0               3.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8327           238           164               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8326           238           164               5               2.0               4.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8329           238           166               4               2.0               4.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8328           238           166             128               0.0               2.0                           98.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8332           238           170               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8331           238           170              15               3.0               5.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8342           238           220               1              11.0              13.0                            0.0         3.0
8343           238           220               0               9.0              11.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8341           238           220               2               7.0               9.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8347           238           229               3               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8346           238           229              21               2.0               4.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8351           238           231               4               7.0               9.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8350           238           231               5               5.0               7.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8357           238           236               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8356           238           236             198               0.0               2.0                          191.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8361           238           238               1               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8359           238           238              92               0.0               2.0                           92.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8365           238           243               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8364           238           243               5               5.0               7.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8367           238           244               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8366           238           244              11               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8369           238           246               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8368           238           246              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8374           238           263               7               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8373           238           263              35               0.0               2.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8380           239            13               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8379           239            13               9               5.0               7.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8387           239            42               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8386           239            42              18               2.0               4.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8389           239            43               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8388           239            43              88               0.0               2.0                           88.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8392           239            48              38               2.0               4.0                           43.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8391           239            48             113               0.0               2.0                          108.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8394           239            50               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8393           239            50              38               1.0               3.0                           38.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8398           239            68              11               3.0               5.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8397           239            68              47               1.0               3.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8403           239            79               3               6.0               8.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8402           239            79               9               4.0               6.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8406           239            88               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8405           239            88               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8409           239            90               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8408           239            90              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8412           239           100               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8411           239           100              28               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8416           239           107               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8415           239           107              16               3.0               5.0                           16.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8419           239           113               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8418           239           113              12               3.0               5.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8421           239           114               4               5.0               7.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8420           239           114               9               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8423           239           116               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8422           239           116              20               2.0               4.0                           20.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8432           239           137               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8431           239           137              10               3.0               5.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8436           239           138               0              13.0              15.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8433           239           138              15               9.0              11.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8438           239           140               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8437           239           140              47               1.0               3.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8442           239           143               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8441           239           143             197               0.0               2.0                          194.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8444           239           144               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8443           239           144              10               4.0               6.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8448           239           151               3               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8447           239           151             224               0.0               2.0                          221.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8450           239           152               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8449           239           152               8               1.0               3.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8454           239           158               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8452           239           158              13               3.0               5.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8456           239           161               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8455           239           161              90               1.0               3.0                           90.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8458           239           162               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8457           239           162              40               1.0               3.0                           40.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8467           239           186               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8466           239           186              47               2.0               4.0                           47.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8470           239           200               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8469           239           200               2               8.0              10.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8480           239           231               1               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8479           239           231              16               4.0               6.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8484           239           234               8               4.0               6.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8483           239           234              20               2.0               4.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8486           239           236              27               2.0               4.0                           33.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8485           239           236             232               0.0               2.0                          225.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8488           239           237              29               2.0               4.0                           31.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8487           239           237             149               0.0               2.0                          147.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8490           239           238               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8489           239           238             416               0.0               2.0                          416.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8493           239           239               2               4.0               6.0                            2.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8491           239           239             145               0.0               2.0                          145.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8495           239           243               2               7.0               9.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8494           239           243               6               5.0               7.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8499           239           246               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8497           239           246              30               1.0               3.0                           29.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8501           239           249               1               5.0               7.0                            1.0         2.0
8502           239           249               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8500           239           249              21               3.0               5.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8506           239           262               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8505           239           262              61               1.0               3.0                           61.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8534           244           239               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8533           244           239               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8551           246            24               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8550           246            24               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8553           246            25               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8552           246            25               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8558           246            40               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8557           246            40               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8560           246            41               2               6.0               8.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8559           246            41               7               4.0               6.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8563           246            43               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8561           246            43               8               1.0               3.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8565           246            45               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8564           246            45               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8567           246            48               8               2.0               4.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8566           246            48             176               0.0               2.0                          176.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8570           246            50               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8568           246            50              91               0.0               2.0                           90.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8577           246            74               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8576           246            74               3               5.0               7.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8579           246            75               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8578           246            75               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8584           246            79               0               7.0               9.0                            0.0         4.0
8585           246            79               0               9.0              11.0                            0.0         5.0
8586           246            79               0              11.0              13.0                            0.0         6.0
8587           246            79               0              13.0              15.0                            0.0         7.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8580           246            79              31               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8590           246            87               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8589           246            87              24               3.0               5.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8592           246            88               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8591           246            88               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8595           246            90               3               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8594           246            90              67               0.0               2.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8605           246           114               5               3.0               5.0                            7.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8604           246           114              28               1.0               3.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8608           246           125               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8607           246           125              24               1.0               3.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8614           246           132               0              18.0              20.0                            0.0         2.0
8615           246           132               0              22.0              24.0                            0.0         4.0
8616           246           132               0              24.0              26.0                            0.0         5.0
8617           246           132               0              26.0              28.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8611           246           132               2              16.0              18.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8621           246           138               0              11.0              13.0                            0.0         2.0
8622           246           138               0              13.0              15.0                            0.0         3.0
8623           246           138               0              15.0              17.0                            0.0         4.0
8624           246           138               0              17.0              19.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8619           246           138               5               9.0              11.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8626           246           140               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8625           246           140               6               2.0               4.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8628           246           141               5               4.0               6.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8627           246           141              23               2.0               4.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8630           246           142               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8629           246           142              65               1.0               3.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8632           246           143               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8631           246           143              69               1.0               3.0                           69.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8636           246           145               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8635           246           145               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8639           246           148               0               4.0               6.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8637           246           148              17               2.0               4.0                           17.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8641           246           151               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8640           246           151              15               3.0               5.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8644           246           158              12               2.0               4.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8643           246           158              76               0.0               2.0                           74.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8647           246           161               1               4.0               6.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8645           246           161              60               0.0               2.0                           59.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8649           246           162               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8648           246           162              28               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8652           246           164               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8651           246           164              75               0.0               2.0                           75.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8654           246           166               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8653           246           166               8               4.0               6.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8667           246           209               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8666           246           209               5               3.0               5.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8670           246           211               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8668           246           211              21               1.0               3.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8676           246           229               8               3.0               5.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8675           246           229              16               1.0               3.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8678           246           230              14               2.0               4.0                           15.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8677           246           230             158               0.0               2.0                          157.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8680           246           231              31               3.0               5.0                           36.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8679           246           231              65               1.0               3.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8682           246           232               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8681           246           232               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8684           246           233               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8683           246           233              19               1.0               3.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8686           246           234               9               2.0               4.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8685           246           234             105               0.0               2.0                          104.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8688           246           236               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8687           246           236              37               3.0               5.0                           37.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8690           246           237               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8689           246           237              49               2.0               4.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8695           246           239               1               5.0               7.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8693           246           239              55               1.0               3.0                           55.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8699           246           246               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8698           246           246              79               0.0               2.0                           79.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8701           246           249              17               2.0               4.0                           18.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8700           246           249              67               0.0               2.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8703           246           256               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8702           246           256               3               5.0               7.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8707           246           263               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8706           246           263              23               3.0               5.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8721           249            25               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8720           249            25               4               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8728           249            43               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8727           249            43               4               2.0               4.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8730           249            45               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8729           249            45               4               1.0               3.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8732           249            48               3               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8731           249            48              43               1.0               3.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8738           249            61               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8737           249            61               2               6.0               8.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8740           249            65               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8739           249            65               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8743           249            68               8               2.0               4.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8742           249            68             103               0.0               2.0                          102.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8745           249            75               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8744           249            75               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8749           249            87              10               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8748           249            87              11               1.0               3.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8753           249            90               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8752           249            90              65               0.0               2.0                           65.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8756           249           100               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8755           249           100              33               0.0               2.0                           31.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8758           249           107               4               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8757           249           107              75               0.0               2.0                           74.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8771           249           141               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8770           249           141              11               3.0               5.0                           11.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8777           249           144               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8775           249           144              49               0.0               2.0                           49.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8781           249           148              13               2.0               4.0                           13.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8780           249           148              42               0.0               2.0                           42.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8786           249           161               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8785           249           161              44               1.0               3.0                           44.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8788           249           162               9               3.0               5.0                           10.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8787           249           162              20               1.0               3.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8790           249           163               1               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8789           249           163              26               2.0               4.0                           25.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8792           249           164               5               2.0               4.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8791           249           164              48               0.0               2.0                           48.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8799           249           186               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8798           249           186              82               0.0               2.0                           82.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8807           249           209               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8806           249           209               6               1.0               3.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8813           249           229               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8812           249           229              24               2.0               4.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8815           249           230               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8814           249           230              61               1.0               3.0                           61.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8817           249           231               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8816           249           231              79               0.0               2.0                           79.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8821           249           234               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8820           249           234             104               0.0               2.0                          104.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8827           249           237               6               4.0               6.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8826           249           237              19               2.0               4.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8830           249           239               4               5.0               7.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8829           249           239              12               3.0               5.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8834           249           246              15               2.0               4.0                           16.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8833           249           246              67               0.0               2.0                           66.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8836           249           249               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8835           249           249              34               0.0               2.0                           34.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8840           249           256               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8839           249           256               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8843           249           261               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8842           249           261              10               1.0               3.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8846           249           263               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8845           249           263               8               4.0               6.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8902           261            33               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8901           261            33               8               1.0               3.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8906           261            43               2               7.0               9.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8905           261            43               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8908           261            45               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8907           261            45              14               0.0               2.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8911           261            48               1               7.0               9.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8909           261            48              41               3.0               5.0                           39.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8913           261            49               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8912           261            49               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8920           261            68               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8919           261            68              26               2.0               4.0                           26.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8923           261            79               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8922           261            79              10               1.0               3.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8928           261            90               1               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8927           261            90               7               1.0               3.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8931           261           100               7               4.0               6.0                            8.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8930           261           100              16               2.0               4.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8934           261           107               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8933           261           107               5               2.0               4.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8937           261           113               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8936           261           113              13               1.0               3.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8940           261           114               0               3.0               5.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8938           261           114              18               1.0               3.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8948           261           132               0              23.0              25.0                            0.0         5.0
8949           261           132               0              25.0              27.0                            0.0         6.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8944           261           132               1              15.0              17.0                            1.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8951           261           137               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8950           261           137               3               3.0               5.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8954           261           138               1              15.0              17.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8953           261           138               3              11.0              13.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8957           261           141               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8956           261           141               7               5.0               7.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8959           261           142               3               6.0               8.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8958           261           142              12               4.0               6.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8962           261           144               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8961           261           144              27               1.0               3.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8966           261           148               3               4.0               6.0                            3.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8965           261           148               9               0.0               2.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8969           261           158               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8968           261           158              21               1.0               3.0                           21.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8975           261           162               5               6.0               8.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8974           261           162              14               4.0               6.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8977           261           163               5               6.0               8.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8976           261           163              20               4.0               6.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8980           261           164               4               6.0               8.0                            4.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8978           261           164              14               2.0               4.0                           13.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8983           261           170               9               5.0               7.0                            9.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8982           261           170              10               3.0               5.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8985           261           181               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8984           261           181               2               3.0               5.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8987           261           186               1               4.0               6.0                            1.0         2.0
8988           261           186               1               6.0               8.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8986           261           186              19               2.0               4.0                           19.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8994           261           211               2               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8993           261           211              24               0.0               2.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8999           261           229               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
8998           261           229               9               4.0               6.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9003           261           230               1               9.0              11.0                            1.0         4.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9000           261           230              56               3.0               5.0                           53.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9005           261           231               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9004           261           231              30               0.0               2.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9007           261           232               6               3.0               5.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9006           261           232              10               1.0               3.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9010           261           233               1               8.0              10.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9008           261           233               8               4.0               6.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9012           261           234               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9011           261           234              18               2.0               4.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9014           261           236               1               9.0              11.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9013           261           236               3               7.0               9.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9022           261           244               0              11.0              13.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9020           261           244               2               9.0              11.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9024           261           246               4               4.0               6.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9023           261           246              27               2.0               4.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9027           261           255               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9026           261           255               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9032           261           261               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9030           261           261               3               0.0               2.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9034           261           262               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9033           261           262               4               6.0               8.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9039           262             4               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9038           262             4               3               4.0               6.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9050           262            43               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9049           262            43              12               0.0               2.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9053           262            48               2               4.0               6.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9052           262            48              12               2.0               4.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9057           262            68               1               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9056           262            68               5               3.0               5.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9059           262            74               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9058           262            74              45               1.0               3.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9061           262            75               1               2.0               4.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9060           262            75              31               0.0               2.0                           30.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9077           262           132               5              19.0              21.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9076           262           132               7              17.0              19.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9081           262           138               1              10.0              12.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9080           262           138               8               8.0              10.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9084           262           141               4               2.0               4.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9083           262           141             106               0.0               2.0                          106.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9094           262           158               0               7.0               9.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9091           262           158               7               5.0               7.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9097           262           162               2               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9096           262           162              29               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9115           262           231               1               8.0              10.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9114           262           231               3               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9117           262           232               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9116           262           232               8               4.0               6.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9119           262           233               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9118           262           233              23               1.0               3.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9121           262           234               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9120           262           234              12               3.0               5.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9124           262           237              14               2.0               4.0                           14.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9123           262           237             142               0.0               2.0                          142.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9130           262           246               0               8.0              10.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9127           262           246               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9133           262           249               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9132           262           249               2               4.0               6.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9136           262           262               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9135           262           262              28               0.0               2.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9140           262           263               0               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9137           262           263              70               0.0               2.0                           70.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9143           263             7               1               6.0               8.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9142           263             7               4               4.0               6.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9149           263            24               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9148           263            24               6               1.0               3.0                            6.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9152           263            41               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9151           263            41              24               1.0               3.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9154           263            42               3               4.0               6.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9153           263            42               8               2.0               4.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9156           263            43              11               2.0               4.0                           12.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9155           263            43              25               0.0               2.0                           24.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9162           263            68               3               5.0               7.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9161           263            68              12               3.0               5.0                           12.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9165           263            74              41               2.0               4.0                           43.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9164           263            74              78               0.0               2.0                           69.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9175           263           107               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9174           263           107              15               3.0               5.0                           15.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9178           263           113               6               5.0               7.0                            6.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9177           263           113               8               3.0               5.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9186           263           132               2              19.0              21.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9185           263           132              11              17.0              19.0                            9.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9189           263           137               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9188           263           137              23               2.0               4.0                           23.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9191           263           138               3               9.0              11.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9190           263           138              15               7.0               9.0                           14.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9196           263           141               0               4.0               6.0                            0.0         3.0
9197           263           141               0               6.0               8.0                            0.0         4.0
9198           263           141               0               8.0              10.0                            0.0         5.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9193           263           141             224               0.0               2.0                          222.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9200           263           142               4               3.0               5.0                            4.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9199           263           142              84               1.0               3.0                           84.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9202           263           143               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9201           263           143              28               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9205           263           145               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9204           263           145               5               2.0               4.0                            5.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9214           263           158               0               7.0               9.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9212           263           158               2               5.0               7.0                            2.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9217           263           161               2               3.0               5.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9216           263           161              33               1.0               3.0                           33.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9219           263           162               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9218           263           162              45               1.0               3.0                           45.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9221           263           163               3               3.0               5.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9220           263           163              28               1.0               3.0                           28.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9238           263           226               2               5.0               7.0                            2.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9237           263           226               7               3.0               5.0                            7.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9241           263           229               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9240           263           229             110               1.0               3.0                          110.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9243           263           230               1               4.0               6.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9242           263           230              18               2.0               4.0                           18.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9246           263           231               1              10.0              12.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9244           263           231               3               6.0               8.0                            3.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9249           263           233               5               3.0               5.0                            5.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9248           263           233              27               1.0               3.0                           27.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9251           263           234               1               5.0               7.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9250           263           234              10               3.0               5.0                           10.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9255           263           236               0               4.0               6.0                            0.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9252           263           236             198               0.0               2.0                          198.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9257           263           237               3               2.0               4.0                            3.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9256           263           237             180               0.0               2.0                          180.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9259           263           238              14               2.0               4.0                           16.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9258           263           238              62               0.0               2.0                           60.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9261           263           239               1               3.0               5.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9260           263           239              69               1.0               3.0                           69.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9263           263           244               1               7.0               9.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9262           263           244               4               5.0               7.0                            4.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9267           263           249               1               8.0              10.0                            1.0         3.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9265           263           249               8               4.0               6.0                            8.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9271           263           262               0               2.0               4.0                            0.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9269           263           262              86               0.0               2.0                           86.0         1.0
Non-congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9273           263           263               1               2.0               4.0                            1.0         2.0

Congested route:
      PULocationID  DOLocationID  trip_occurence  dist_lower_bound  dist_upper_bound  Count_of_congestion_surcharge  Rankfilter
9272           263           263              61               0.0               2.0                           61.0         1.0
In [223]:
pairs = d3[['PULocationID','DOLocationID']]
pairs
Out[223]:
PULocationID DOLocationID
34 7 138
35 7 138
52 10 114
53 10 114
59 10 162
... ... ...
9269 263 262
9270 263 262
9271 263 262
9272 263 263
9273 263 263

5882 rows × 2 columns

In [224]:
pairs.drop_duplicates(inplace = True)
In [225]:
uni_pairs = pairs.copy()
In [227]:
d4[d4['trip_occurence'] != d4['Count_of_congestion_surcharge']]
Out[227]:
PULocationID DOLocationID trip_occurence dist_lower_bound dist_upper_bound Count_of_congestion_surcharge
34 7 138 2 2.0 4.0 0.0
62 10 163 3 13.0 15.0 2.0
132 13 1 2 14.0 16.0 0.0
162 13 79 29 4.0 6.0 30.0
163 13 79 4 2.0 4.0 3.0
... ... ... ... ... ... ...
9186 263 132 2 19.0 21.0 3.0
9190 263 138 15 7.0 9.0 14.0
9193 263 141 224 0.0 2.0 222.0
9258 263 238 62 0.0 2.0 60.0
9259 263 238 14 2.0 4.0 16.0

1532 rows × 6 columns

In [228]:
d4[d4['trip_occurence'] == d4['Count_of_congestion_surcharge']]
Out[228]:
PULocationID DOLocationID trip_occurence dist_lower_bound dist_upper_bound Count_of_congestion_surcharge
59 10 162 2 13.0 15.0 2.0
80 12 13 2 0.0 2.0 2.0
105 12 142 2 5.0 7.0 2.0
106 12 142 2 7.0 9.0 2.0
117 12 230 6 6.0 8.0 6.0
... ... ... ... ... ... ...
9262 263 244 4 5.0 7.0 4.0
9265 263 249 8 4.0 6.0 8.0
9266 263 249 2 6.0 8.0 2.0
9269 263 262 86 0.0 2.0 86.0
9272 263 263 61 0.0 2.0 61.0

2327 rows × 6 columns

In [229]:
d4['Count_of_congestion_surcharge'] = d4['Count_of_congestion_surcharge'].astype('int64')
In [230]:
df['congestion_surcharge'].value_counts()
Out[230]:
2.5    119679
0.0      6665
Name: congestion_surcharge, dtype: int64
In [231]:
df[df['congestion_surcharge'] == 0]
Out[231]:
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count trip_distance RatecodeID store_and_fwd_flag PULocationID DOLocationID payment_type fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee PU_Borough PU_Zone PU_service_zone DO_Borough DO_Zone DO_service_zone trip_duration_secs pickup_date dropoff_date pickup_hour drop_hour pickup_day dropoff_day
262537 1 2023-04-03 16:51:11 2023-04-03 17:12:53 1 2.00 1.0 N 247 41 1 19.8 2.5 0.5 5.00 0.0 1.0 28.80 0.0 0.00 Bronx West Concourse Boro Zone Manhattan Central Harlem Boro Zone 1302.0 2023-04-03 2023-04-03 16 17 Monday Monday
262547 2 2023-04-03 16:07:31 2023-04-03 16:50:07 1 12.35 1.0 N 132 138 1 57.6 5.0 0.5 0.00 0.0 1.0 65.85 0.0 1.75 Queens JFK Airport Airports Queens LaGuardia Airport Airports 2556.0 2023-04-03 2023-04-03 16 16 Monday Monday
262580 1 2023-04-03 16:00:12 2023-04-03 16:10:31 1 1.60 1.0 N 7 223 1 10.0 2.5 0.5 2.80 0.0 1.0 16.80 0.0 0.00 Queens Astoria Boro Zone Queens Steinway Boro Zone 619.0 2023-04-03 2023-04-03 16 16 Monday Monday
262581 2 2023-04-03 16:44:32 2023-04-03 17:20:04 1 7.64 1.0 N 138 80 1 40.1 7.5 0.5 10.07 0.0 1.0 60.92 0.0 1.75 Queens LaGuardia Airport Airports Brooklyn East Williamsburg Boro Zone 2132.0 2023-04-03 2023-04-03 16 17 Monday Monday
262595 2 2023-04-03 16:49:07 2023-04-03 17:54:55 6 16.61 1.0 N 132 255 1 77.2 2.5 0.5 5.00 0.0 1.0 87.95 0.0 1.75 Queens JFK Airport Airports Brooklyn Williamsburg (North Side) Boro Zone 3948.0 2023-04-03 2023-04-03 16 17 Monday Monday
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
710037 1 2023-04-07 19:23:55 2023-04-07 19:38:18 1 1.90 1.0 N 7 193 2 12.8 2.5 0.5 0.00 0.0 1.0 16.80 0.0 0.00 Queens Astoria Boro Zone Queens Queensbridge/Ravenswood Boro Zone 863.0 2023-04-07 2023-04-07 19 19 Friday Friday
710058 2 2023-04-07 19:43:53 2023-04-07 20:02:20 1 5.96 1.0 N 132 197 2 26.8 2.5 0.5 0.00 0.0 1.0 32.55 0.0 1.75 Queens JFK Airport Airports Queens Richmond Hill Boro Zone 1107.0 2023-04-07 2023-04-07 19 20 Friday Friday
710066 2 2023-04-07 19:07:30 2023-04-07 19:39:24 3 15.31 1.0 N 132 7 1 60.4 2.5 0.5 13.23 0.0 1.0 79.38 0.0 1.75 Queens JFK Airport Airports Queens Astoria Boro Zone 1914.0 2023-04-07 2023-04-07 19 19 Friday Friday
710089 1 2023-04-07 19:56:45 2023-04-07 20:12:22 1 7.00 1.0 N 138 112 1 29.6 7.5 0.5 8.05 0.0 1.0 48.40 0.0 1.75 Queens LaGuardia Airport Airports Brooklyn Greenpoint Boro Zone 937.0 2023-04-07 2023-04-07 19 20 Friday Friday
710537 2 2023-04-07 19:48:40 2023-04-07 20:20:47 4 13.22 5.0 N 215 215 1 86.0 0.0 0.5 15.00 0.0 1.0 102.50 0.0 0.00 Queens South Jamaica Boro Zone Queens South Jamaica Boro Zone 1927.0 2023-04-07 2023-04-07 19 20 Friday Friday

6665 rows × 32 columns

In [232]:
def xxx(group):
#     ran = group.max() - group.min()
    if group.max() == group.min():
        l=[round(group.min()),round(group.max()+1)]    

    else:
        #     print(group.min())
        #     print(group.max())
        val = round(group.min())

        l=[val]
        while (val<group.max()):
            val=val+2
            l.append(val)
        else:
            if (val!=group.max()) & (val<group.max()):
                l.append(round(group.max()))
    print(group.value_counts(bins=l))
In [233]:
import math
def aaa(group):
#     ran = group.max() - group.min()
    if group.max() == group.min():
        l=[math.floor(group.min()),math.ceil(group.max()+1)]    

    else:
        #     print(group.min())
        #     print(group.max())
        val = math.floor(group.min())

        l=[val]
        while (val<group.max()):
            val=val+2
            l.append(val)
        else:
            if (val!=group.max()) & (val<group.max()):
                l.append(math.ceil(group.max()))
    print(group.value_counts(bins=l))
In [234]:
dfh = df.copy()
In [235]:
# Calculate time per mile
dfh['time_per_mile'] = dfh['trip_duration_secs'] / dfh['trip_distance']
In [236]:
# Extract hour of the day from pickup time
dfh['pickup_hour'] = dfh['tpep_pickup_datetime'].dt.hour
In [237]:
# extract day of the week from pickup time
dfh['pickup_day'] = dfh['tpep_pickup_datetime'].dt.day_name()
In [238]:
dfh.drop(dfh[(dfh['PULocationID'] == dfh['DOLocationID']) & (dfh['trip_distance']<1)].index, inplace = True)
In [239]:
dfh.drop(dfh[(dfh['PULocationID'] == dfh['DOLocationID'])].index, inplace = True)
In [240]:
pickup_hour  = dfh['pickup_hour'].unique()
pickup_hour = list(pickup_hour)
pickup_hour
Out[240]:
[16, 17, 18, 19]

Top 5 routes that congested each hour

In [241]:
grouped_df = dfh.groupby(["pickup_hour", "PULocationID", "DOLocationID"])

mean_time_per_mile = round(grouped_df["time_per_mile"].mean(),2)
In [242]:
dfhour = pd.DataFrame(mean_time_per_mile)
dfhour = dfhour.reset_index()
dfhour.head(10)
Out[242]:
pickup_hour PULocationID DOLocationID time_per_mile
0 16 4 13 211.36
1 16 4 79 360.32
2 16 4 114 459.44
3 16 4 161 545.79
4 16 4 162 406.00
5 16 4 164 414.09
6 16 4 232 327.91
7 16 4 234 467.66
8 16 7 48 338.83
9 16 7 146 695.44
In [243]:
dfhour['time_per_mile_rank'] = dfhour.groupby(['pickup_hour']).time_per_mile.rank(method = 'max')
In [244]:
dfhour.sort_values(by = ['time_per_mile'], ascending = False)
Out[244]:
pickup_hour PULocationID DOLocationID time_per_mile time_per_mile_rank
2574 16 211 125 2432.14 3552.0
3896 17 50 100 1314.77 3681.0
3727 17 42 168 1187.67 3680.0
1990 16 158 125 1098.08 3551.0
486 16 68 255 1056.99 3550.0
... ... ... ... ... ...
12218 19 132 52 75.37 4.0
13642 19 197 132 75.12 3.0
11842 19 93 157 72.00 2.0
13042 19 157 170 71.57 1.0
10000 18 226 148 56.87 1.0

14750 rows × 5 columns

In [245]:
for hour in pickup_hour:
    route = dfhour[dfhour['pickup_hour'] == hour]
       # top 5 congested routes
    print('Top 5 congested routes:')
    print(route.nlargest(5,'time_per_mile_rank').to_string())
    
    # top 5 less congested routes
    print('Top 5 less congested routes:')
    print(route.nsmallest(5, 'time_per_mile_rank').to_string())
Top 5 congested routes:
      pickup_hour  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
2574           16           211           125        2432.14              3552.0
1990           16           158           125        1098.08              3551.0
486            16            68           255        1056.99              3550.0
3338           16           247           235        1008.10              3549.0
3484           16           262           166         964.64              3548.0
Top 5 less congested routes:
      pickup_hour  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
2638           16           226             1          82.03                 1.0
1500           16           138           194         100.72                 2.0
1241           16           132           150         103.39                 3.0
1292           16           132           221         103.83                 4.0
2526           16           197           132         106.45                 5.0
Top 5 congested routes:
      pickup_hour  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
3896           17            50           100        1314.77              3681.0
3727           17            42           168        1187.67              3680.0
3586           17            12           144        1036.78              3679.0
3937           17            65            66        1035.14              3678.0
6371           17           230            50        1002.25              3677.0
Top 5 less congested routes:
      pickup_hour  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
6253           17           216           132          81.44                 1.0
3616           17            13           132          95.53                 2.0
6264           17           224            88          96.11                 3.0
4830           17           132           154          96.57                 4.0
6167           17           197           219          99.65                 5.0
Top 5 congested routes:
      pickup_hour  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
7390           18            42           168        1022.62              3755.0
9933           18           211           125         913.33              3754.0
7530           18            48           230         875.45              3753.0
9322           18           161            48         855.20              3752.0
7397           18            43            42         830.59              3751.0
Top 5 less congested routes:
       pickup_hour  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
10000           18           226           148          56.87                 1.0
9878            18           208            58          82.18                 2.0
10837           18           261           132          84.12                 3.0
8407            18           132            21          88.38                 4.0
8606            18           137            88          91.86                 5.0
Top 5 congested routes:
       pickup_hour  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
14565           19           256            17         890.00              3762.0
11335           19            50           161         766.33              3761.0
14009           19           233            48         763.92              3760.0
12164           19           125           224         762.22              3759.0
11298           19            48           230         745.37              3758.0
Top 5 less congested routes:
       pickup_hour  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
13042           19           157           170          71.57                 1.0
11842           19            93           157          72.00                 2.0
13642           19           197           132          75.12                 3.0
12218           19           132            52          75.37                 4.0
11678           19            82           170          75.49                 5.0
In [246]:
dfh['pickup_day'] = dfh['tpep_pickup_datetime'].dt.day_name()

dfh.head(2)
Out[246]:
VendorID tpep_pickup_datetime tpep_dropoff_datetime passenger_count trip_distance RatecodeID store_and_fwd_flag PULocationID DOLocationID payment_type fare_amount extra mta_tax tip_amount tolls_amount improvement_surcharge total_amount congestion_surcharge Airport_fee PU_Borough PU_Zone PU_service_zone DO_Borough DO_Zone DO_service_zone trip_duration_secs pickup_date dropoff_date pickup_hour drop_hour pickup_day dropoff_day time_per_mile
256283 2 2023-04-03 16:00:05 2023-04-03 16:10:40 1 1.41 1.0 N 162 137 2 11.4 0.0 0.5 0.0 0.0 1.0 15.4 2.5 0.0 Manhattan Midtown East Yellow Zone Manhattan Kips Bay Yellow Zone 635.0 2023-04-03 2023-04-03 16 16 Monday Monday 450.354610
257233 2 2023-04-03 16:44:51 2023-04-03 16:49:59 1 0.78 1.0 N 43 230 2 6.5 0.0 0.5 0.0 0.0 1.0 10.5 2.5 0.0 Manhattan Central Park Yellow Zone Manhattan Times Sq/Theatre District Yellow Zone 308.0 2023-04-03 2023-04-03 16 16 Monday Monday 394.871795
In [247]:
pickup_day = dfh['pickup_day'].unique()
pickup_day = list(pickup_day)
pickup_day
Out[247]:
['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday']
In [248]:
grouped_df_day = dfh.groupby(["pickup_day", "PULocationID", "DOLocationID"])

mean_time_per_mile = round(grouped_df_day["time_per_mile"].mean(),2)
In [249]:
dfday = pd.DataFrame(mean_time_per_mile)
dfday = dfday.reset_index()
dfday.head(10)
Out[249]:
pickup_day PULocationID DOLocationID time_per_mile
0 Friday 4 68 508.64
1 Friday 4 79 432.99
2 Friday 4 107 539.36
3 Friday 4 114 391.88
4 Friday 4 129 174.66
5 Friday 4 144 411.63
6 Friday 4 148 456.19
7 Friday 4 161 545.79
8 Friday 4 186 750.21
9 Friday 4 224 298.36
In [250]:
dfday['time_per_mile_rank'] = dfday.groupby(['pickup_day']).time_per_mile.rank(method = 'max')
In [251]:
dfday.sort_values(by = ['time_per_mile'], ascending = False)
Out[251]:
pickup_day PULocationID DOLocationID time_per_mile time_per_mile_rank
10741 Tuesday 68 255 2546.67 3510.0
16333 Wednesday 211 125 1535.30 3510.0
8588 Thursday 146 260 1295.41 3474.0
13960 Wednesday 42 168 1187.67 3509.0
16469 Wednesday 230 50 1108.58 3508.0
... ... ... ... ... ...
4078 Monday 82 170 75.49 2.0
2545 Friday 216 132 74.81 1.0
11086 Tuesday 93 157 72.00 1.0
8691 Thursday 157 170 71.57 1.0
5950 Monday 226 148 56.87 1.0

17316 rows × 5 columns

In [252]:
for day in pickup_day:
    route = dfday[dfday['pickup_day'] == day]
       # top 5 congested routes
    print('Top 5 congested routes:')
    print(route.nlargest(5,'time_per_mile_rank').to_string())
    
    # top 5 less congested routes
    print('Top 5 less congested routes:')
    print(route.nsmallest(5, 'time_per_mile_rank').to_string())
    
Top 5 congested routes:
     pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
3609     Monday            42           168        1022.62              3363.0
3679     Monday            45            66         961.39              3362.0
4446     Monday           114           209         936.71              3361.0
5903     Monday           211           144         891.85              3360.0
6237     Monday           234            65         880.27              3359.0
Top 5 less congested routes:
     pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
5950     Monday           226           148          56.87                 1.0
4078     Monday            82           170          75.49                 2.0
6439     Monday           238             1          80.33                 3.0
5929     Monday           216           132          81.25                 4.0
5857     Monday           197           132          82.58                 5.0
Top 5 congested routes:
      pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
10741    Tuesday            68           255        2546.67              3510.0
12119    Tuesday           148            45         924.44              3509.0
13618    Tuesday           249           209         774.00              3508.0
13646    Tuesday           261            13         770.90              3507.0
12722    Tuesday           186           100         753.56              3506.0
Top 5 less congested routes:
      pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
11086    Tuesday            93           157          72.00                 1.0
11577    Tuesday           132           257          87.48                 2.0
11464    Tuesday           132           106          88.25                 3.0
12572    Tuesday           166             1          88.77                 4.0
10797    Tuesday            70           250          89.43                 5.0
Top 5 congested routes:
      pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
16333  Wednesday           211           125        1535.30              3510.0
13960  Wednesday            42           168        1187.67              3509.0
16469  Wednesday           230            50        1108.58              3508.0
14516  Wednesday            88           211        1039.69              3507.0
14147  Wednesday            65            66        1035.14              3506.0
Top 5 less congested routes:
      pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
15055  Wednesday           132           228          85.83                 1.0
13871  Wednesday            13           210          89.60                 2.0
14913  Wednesday           132            22          91.91                 3.0
14979  Wednesday           132           108          98.23                 4.0
15081  Wednesday           134           132          98.26                 5.0
Top 5 congested routes:
      pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
8588    Thursday           146           260        1295.41              3474.0
10112   Thursday           249           236        1067.11              3473.0
6832    Thursday             7           146         999.29              3472.0
9294    Thursday           211           125         913.33              3471.0
7473    Thursday            87           209         896.77              3470.0
Top 5 less congested routes:
      pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
8691    Thursday           157           170          71.57                 1.0
9246    Thursday           208            58          82.18                 2.0
10156   Thursday           261           132          87.35                 3.0
6876    Thursday            13           132          92.90                 4.0
9255    Thursday           209           138          94.31                 5.0
Top 5 congested routes:
     pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
304      Friday            48           230         933.33              3459.0
2488     Friday           209           231         930.00              3458.0
2021     Friday           161           230         906.26              3457.0
854      Friday           100           230         891.86              3456.0
2663     Friday           230           100         827.97              3455.0
Top 5 less congested routes:
     pickup_day  PULocationID  DOLocationID  time_per_mile  time_per_mile_rank
2545     Friday           216           132          74.81                 1.0
2464     Friday           208           252          76.98                 2.0
1118     Friday           132            40          81.67                 3.0
2568     Friday           226             1          82.03                 4.0
1126     Friday           132            54          83.66                 5.0
In [ ]:
# Hourwise
In [253]:
gdf = dfh.groupby(['pickup_hour', "PULocationID"])

total_trips = gdf["trip_distance"].count()
In [254]:
dfhr = pd.DataFrame(total_trips)
dfhr = dfhr.reset_index()
dfhr.head(10)
Out[254]:
pickup_hour PULocationID trip_distance
0 16 4 10
1 16 7 5
2 16 10 26
3 16 12 45
4 16 13 222
5 16 24 56
6 16 25 4
7 16 28 3
8 16 33 11
9 16 41 57
In [255]:
dfhr = dfhr.rename(columns = {'trip_distance' : 'trip_occurence'})
In [256]:
dfhr['trip_rank'] = dfhr.groupby(['pickup_hour']).trip_occurence.rank(method = 'max')
In [257]:
dfhr['trip_rank'] = dfhr.groupby(['pickup_hour']).trip_occurence.rank(method = 'max')
In [258]:
dfhr.sort_values(by = ['trip_rank'], ascending = False)
Out[258]:
pickup_hour PULocationID trip_occurence trip_rank
62 16 161 1918 109.0
45 16 132 1596 108.0
275 18 161 2234 107.0
94 16 237 1527 107.0
93 16 236 1368 106.0
... ... ... ... ...
16 16 52 1 16.0
15 16 51 1 16.0
380 19 165 1 16.0
382 19 168 1 16.0
324 19 17 1 16.0

420 rows × 4 columns

In [259]:
for hour in pickup_hour:
    location = dfhr[dfhr['pickup_hour'] == hour]
       # top 5 locations with most demand
    print('Top 5 Locations with most demand:')
    print(location.nlargest(5,'trip_rank').to_string())
    
    # top 5 locations with least demand
    print('Top 5 Locations with least demand :')
    print(location.nsmallest(5, 'trip_rank').to_string())
Top 5 Locations with most demand:
    pickup_hour  PULocationID  trip_occurence  trip_rank
62           16           161            1918      109.0
45           16           132            1596      108.0
94           16           237            1527      107.0
93           16           236            1368      106.0
63           16           162            1182      105.0
Top 5 Locations with least demand :
    pickup_hour  PULocationID  trip_occurence  trip_rank
15           16            51               1       16.0
16           16            52               1       16.0
17           16            56               1       16.0
29           16            89               1       16.0
31           16            91               1       16.0
Top 5 Locations with most demand:
     pickup_hour  PULocationID  trip_occurence  trip_rank
168           17           161            2157      103.0
152           17           132            1731      102.0
200           17           237            1700      101.0
169           17           162            1517      100.0
199           17           236            1484       99.0
Top 5 Locations with least demand :
     pickup_hour  PULocationID  trip_occurence  trip_rank
116           17            28               1       16.0
117           17            32               1       16.0
127           17            61               1       16.0
130           17            67               1       16.0
133           17            72               1       16.0
Top 5 Locations with most demand:
     pickup_hour  PULocationID  trip_occurence  trip_rank
275           18           161            2234      107.0
260           18           132            1766      106.0
276           18           162            1625      105.0
305           18           237            1590      104.0
304           18           236            1384      103.0
Top 5 Locations with least demand :
     pickup_hour  PULocationID  trip_occurence  trip_rank
217           18            21               1       23.0
220           18            28               1       23.0
222           18            36               1       23.0
223           18            37               1       23.0
231           18            54               1       23.0
Top 5 Locations with most demand:
     pickup_hour  PULocationID  trip_occurence  trip_rank
376           19           161            1771      101.0
360           19           132            1510      100.0
377           19           162            1267       99.0
407           19           237            1205       98.0
401           19           230            1083       97.0
Top 5 Locations with least demand :
     pickup_hour  PULocationID  trip_occurence  trip_rank
324           19            17               1       16.0
335           19            49               1       16.0
337           19            52               1       16.0
344           19            76               1       16.0
358           19           119               1       16.0
In [ ]:
# Daywise
In [260]:
ddf = dfh.groupby(['pickup_day', "PULocationID"])

total_trips = ddf["trip_distance"].count()
In [261]:
dfdy = pd.DataFrame(total_trips)
dfdy = dfdy.reset_index()
dfdy.head(10)
Out[261]:
pickup_day PULocationID trip_distance
0 Friday 4 12
1 Friday 7 4
2 Friday 10 5
3 Friday 12 22
4 Friday 13 187
5 Friday 21 1
6 Friday 24 64
7 Friday 25 5
8 Friday 28 1
9 Friday 33 11
In [262]:
dfdy = dfdy.rename(columns = {'trip_distance' : 'trip_occurence'})
In [263]:
dfdy['trip_rank'] = dfdy.groupby(['pickup_day']).trip_occurence.rank(method = 'max')
In [264]:
dfdy['trip_rank'] = dfdy.groupby(['pickup_day']).trip_occurence.rank(method = 'max')
In [265]:
dfdy.sort_values(by = ['trip_rank'], ascending = False)
Out[265]:
pickup_day PULocationID trip_occurence trip_rank
168 Monday 161 1464 104.0
59 Friday 161 1314 104.0
42 Friday 132 1217 103.0
362 Tuesday 161 1781 103.0
464 Wednesday 161 1765 103.0
... ... ... ... ...
267 Thursday 165 1 12.0
248 Thursday 134 1 12.0
293 Thursday 242 1 12.0
216 Thursday 36 1 12.0
261 Thursday 157 1 12.0

510 rows × 4 columns

In [266]:
for day in pickup_day:
    location = dfdy[dfdy['pickup_day'] == day]
       # top 5 locations with most demand
    print('Top 5 Locations with most demand:')
    print(location.nlargest(5,'trip_rank').to_string())
    
    # top 5 locations with least demand
    print('Top 5 Locations with least demand :')
    print(location.nsmallest(5, 'trip_rank').to_string())   
Top 5 Locations with most demand:
    pickup_day  PULocationID  trip_occurence  trip_rank
168     Monday           161            1464      104.0
153     Monday           132            1392      103.0
195     Monday           237            1146      102.0
169     Monday           162            1062      101.0
194     Monday           236             997      100.0
Top 5 Locations with least demand :
    pickup_day  PULocationID  trip_occurence  trip_rank
111     Monday            28               1       20.0
118     Monday            49               1       20.0
121     Monday            54               1       20.0
122     Monday            56               1       20.0
123     Monday            61               1       20.0
Top 5 Locations with most demand:
    pickup_day  PULocationID  trip_occurence  trip_rank
362    Tuesday           161            1781      103.0
345    Tuesday           132            1324      102.0
395    Tuesday           237            1315      101.0
363    Tuesday           162            1248      100.0
394    Tuesday           236            1184       99.0
Top 5 Locations with least demand :
    pickup_day  PULocationID  trip_occurence  trip_rank
309    Tuesday            17               1       19.0
312    Tuesday            28               1       19.0
314    Tuesday            37               1       19.0
330    Tuesday            82               1       19.0
335    Tuesday            95               1       19.0
Top 5 Locations with most demand:
    pickup_day  PULocationID  trip_occurence  trip_rank
464  Wednesday           161            1765      103.0
465  Wednesday           162            1339      102.0
449  Wednesday           132            1327      101.0
496  Wednesday           237            1246      100.0
489  Wednesday           230            1162       99.0
Top 5 Locations with least demand :
    pickup_day  PULocationID  trip_occurence  trip_rank
415  Wednesday            32               1       18.0
423  Wednesday            51               1       18.0
427  Wednesday            67               1       18.0
438  Wednesday            97               1       18.0
440  Wednesday           102               1       18.0
Top 5 Locations with most demand:
    pickup_day  PULocationID  trip_occurence  trip_rank
263   Thursday           161            1756       96.0
247   Thursday           132            1343       95.0
290   Thursday           237            1200       94.0
264   Thursday           162            1130       93.0
289   Thursday           236             942       92.0
Top 5 Locations with least demand :
    pickup_day  PULocationID  trip_occurence  trip_rank
216   Thursday            36               1       12.0
223   Thursday            49               1       12.0
233   Thursday            83               1       12.0
248   Thursday           134               1       12.0
261   Thursday           157               1       12.0
Top 5 Locations with most demand:
   pickup_day  PULocationID  trip_occurence  trip_rank
59     Friday           161            1314      104.0
42     Friday           132            1217      103.0
90     Friday           237            1115      102.0
89     Friday           236             894      101.0
60     Friday           162             812      100.0
Top 5 Locations with least demand :
   pickup_day  PULocationID  trip_occurence  trip_rank
5      Friday            21               1       20.0
8      Friday            28               1       20.0
16     Friday            52               1       20.0
17     Friday            56               1       20.0
25     Friday            76               1       20.0

Better Route and Congested Short Distance

In [267]:
df['time per mile'] = round(df['trip_duration_secs']/df['trip_distance'])
d1 = pd.DataFrame((df.groupby(['PULocationID','DOLocationID'])['trip_distance'].apply(bbb)))
import math
def bbb(group):
    
#     ran = group.max() - group.min()
    if group.max() == group.min():
        l=[math.floor(group.min()),math.ceil(group.max()+1)]    

    else:
        #     print(group.min())
        #     print(group.max())
        val = math.floor(group.min())

        l=[val]
        while (val<group.max()):
            val=val+2
            l.append(val)
        else:
            if (val!=group.max()) & (val<group.max()):
                l.append(math.ceil(group.max()))
   
    return group.value_counts(bins=l)
In [268]:
d1 = d1.reset_index()
d1['dist_lower_bound']=np.abs(round(d1.level_2.map(lambda x: x.left)))
d1['dist_upper_bound']=np.abs(round(d1.level_2.map(lambda x: x.right)))
d1.drop(columns=['level_2'], inplace=True)
d1.rename({'trip_distance':'trip_occurance'},axis=1,inplace=True)
d1=d1[d1.trip_occurance>1]
d1=d1[d1.duplicated(['PULocationID','DOLocationID'],keep=False)]
d2=d1.copy()
d2['average_trip_dur'] = 0
for i in range(0,len(d1)):
    puid = d1.iloc[i,0]
    doid = d1.iloc[i,1]
    distl = d1.iloc[i,3]
    distu = d1.iloc[i,4]
    d2.iloc[i,5]=np.round(np.average(df[(df.PULocationID==puid) & (df.DOLocationID==doid) & (df.trip_distance>=distl) & (df.trip_distance<distu)]['trip_duration_secs']))
In [269]:
uni_pairs = d2[['PULocationID','DOLocationID']].drop_duplicates()
In [270]:
counter=0
OD_pairs=[]
for i in range(0,len(uni_pairs)):
    start = uni_pairs.iloc[i,0]
    end = uni_pairs.iloc[i,1]
    filtered=d2[(d2.PULocationID==start) & (d2.DOLocationID == end)]
    filtered['Rankfilter']=filtered.dist_upper_bound.rank()
    minimum_dur = filtered.average_trip_dur.min()
    filteredrank = filtered[filtered.average_trip_dur==minimum_dur].Rankfilter
    if filteredrank.iloc[0] ==1:
        continue
    else:
        print('better route:')
        print(filtered[filtered.average_trip_dur==minimum_dur].to_string())
        print()
        print('congested short distance:')
        print(filtered[filtered.Rankfilter==1].to_string())
        counter+=1
        OD_pairs.append((start,end))
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
162            13            79              29               4.0               6.0               824         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
163            13            79               4               2.0               4.0               998         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
172            13           107              20               4.0               6.0              1063         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
173            13           107               8               2.0               4.0              1129         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
182            13           132               8              27.0              29.0              3238         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
183            13           132               2              19.0              21.0              3542         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
192            13           138               5              16.0              18.0              1961         3.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
193            13           138               2              12.0              14.0              2970         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
210            13           161              14               6.0               8.0              1348         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
211            13           161               9               4.0               6.0              1460         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
218            13           164               5               5.0               7.0              1231         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
217            13           164              23               3.0               5.0              1232         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
222            13           181               2               5.0               7.0              1190         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
221            13           181               2               3.0               5.0              1844         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
227            13           209               3               2.0               4.0               520         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
226            13           209               5               0.0               2.0               530         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
239            13           232               6               3.0               5.0               805         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
238            13           232               7               1.0               3.0               826         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
240            13           233              13               6.0               8.0              1032         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
241            13           233               9               4.0               6.0              1266         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
247            13           237               2               8.0              10.0              1134         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
246            13           237               5               6.0               8.0              1535         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
533            43           114               3               4.0               6.0              1443         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
532            43           114              12               2.0               4.0              1468         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
539            43           132               3              19.0              21.0              2951         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
540            43           132               2              17.0              19.0              3154         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
557            43           148               2               5.0               7.0              1332         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
556            43           148               7               3.0               5.0              1826         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
724            48             1               4              17.0              19.0              2224         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
723            48             1               7              15.0              17.0              3157         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
784            48           132               9              18.0              20.0              3425         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
783            48           132              27              16.0              18.0              3946         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
789            48           138               7               9.0              11.0              2572         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
790            48           138               4               7.0               9.0              2877         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
809            48           151               2               4.0               6.0               892         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
808            48           151              23               2.0               4.0              1123         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
833            48           211               2               4.0               6.0              1145         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
832            48           211              16               2.0               4.0              1221         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
874            48           261               2               5.0               7.0              1385         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
873            48           261               4               3.0               5.0              1398         1.0
better route:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
943            50           186               2               2.0               4.0               610         2.0

congested short distance:
     PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
942            50           186              21               0.0               2.0               714         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1067            68             1               4              17.0              19.0              2165         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1068            68             1               3              13.0              15.0              3220         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1087            68            41               5               5.0               7.0              1526         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1086            68            41               8               3.0               5.0              1745         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1095            68            45               2               5.0               7.0              1214         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1094            68            45               5               1.0               3.0              1380         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1120            68            87               2               5.0               7.0              1253         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1119            68            87              32               3.0               5.0              1333         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1156            68           140              11               4.0               6.0              1536         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1155            68           140              13               2.0               4.0              1604         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1171            68           151               2               5.0               7.0               986         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1170            68           151              13               3.0               5.0              1332         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1187            68           166               5               6.0               8.0              1126         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1186            68           166               5               4.0               6.0              1489         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1203            68           209               3               5.0               7.0              1388         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1202            68           209               3               3.0               5.0              1395         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1258            68           263               4               5.0               7.0              1505         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1257            68           263              33               3.0               5.0              1560         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1369            70           161              18              10.0              12.0              1714         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1370            70           161               6               8.0              10.0              1797         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1375            70           163               5               8.0              10.0              1711         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1376            70           163               2               6.0               8.0              1984         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1420            70           229               2              10.0              12.0              1348         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1419            70           229               5               8.0              10.0              1571         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1438            70           239               5              10.0              12.0              2315         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1437            70           239              10               8.0              10.0              2389         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1553            75            90               2               6.0               8.0              1492         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1552            75            90               3               4.0               6.0              1921         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1629            79            43               2               5.0               7.0              1437         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1628            79            43               7               3.0               5.0              1459         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1749            79           261               5               3.0               5.0               919         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1748            79           261               7               1.0               3.0               943         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1775            87            33               3               3.0               5.0               913         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1774            87            33              10               1.0               3.0               944         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1800            87            79              22               3.0               5.0               746         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1799            87            79              24               1.0               3.0               750         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1811            87           100               8               5.0               7.0              1462         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1812            87           100               3               3.0               5.0              1538         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1824            87           132               2              20.0              22.0              2606         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1822            87           132               3              14.0              16.0              4748         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1832            87           142               3               7.0               9.0              1614         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1831            87           142               4               5.0               7.0              1716         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1870            87           230              21               5.0               7.0              1537         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1871            87           230               7               3.0               5.0              1801         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1878            87           234               9               4.0               6.0              1083         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1879            87           234               5               2.0               4.0              1175         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1889            87           249               2               3.0               5.0               905         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1888            87           249              12               1.0               3.0               977         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1915            88            79              20               3.0               5.0               773         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1916            88            79               2               1.0               3.0              1050         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1925            88           113               4               4.0               6.0              1080         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1924            88           113               7               2.0               4.0              1263         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1954            88           164              15               5.0               7.0              1268         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1955            88           164               4               3.0               5.0              1664         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1970            88           230              13               6.0               8.0              1549         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1969            88           230              14               4.0               6.0              1621         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1976            88           234               4               4.0               6.0              1056         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1975            88           234               4               2.0               4.0              1307         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1996            90             1               2              18.0              20.0              2792         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
1995            90             1               2              16.0              18.0              2938         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2031            90            87               5               4.0               6.0              1166         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2030            90            87               5               2.0               4.0              1309         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2056            90           140               2               4.0               6.0              1150         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2055            90           140              10               2.0               4.0              1450         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2075            90           166               3               6.0               8.0              1207         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2074            90           166               4               4.0               6.0              2155         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2111            90           239               6               4.0               6.0              1408         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2110            90           239              23               2.0               4.0              1501         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2155           100             1               4              18.0              20.0              2914         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2154           100             1               6              16.0              18.0              2916         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2226           100           138               4              11.0              13.0              2152         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2225           100           138              13               9.0              11.0              2337         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2266           100           166               2               5.0               7.0              1485         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2265           100           166               5               3.0               5.0              1670         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2305           100           238               2               4.0               6.0              1220         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2304           100           238              32               2.0               4.0              1243         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2330           107            13               3               5.0               7.0              1277         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2329           107            13               6               3.0               5.0              1294         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2348           107            45               2               3.0               5.0               723         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2347           107            45               5               1.0               3.0               788         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2368           107            88               6               4.0               6.0               878         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2369           107            88               2               2.0               4.0              1462         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2387           107           132              15              16.0              18.0              2999         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2388           107           132               4              14.0              16.0              4439         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2461           107           261               3               4.0               6.0               992         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2462           107           261               2               2.0               4.0              1350         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2656           114           181               2               5.0               7.0              1663         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2655           114           181               2               3.0               5.0              1854         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2685           114           238               3               6.0               8.0              1398         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2684           114           238               5               4.0               6.0              1699         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2822           132             3               2              21.0              23.0              2236         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2821           132             3               2              17.0              19.0              2411         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2825           132             4               6              19.0              21.0              2562         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2824           132             4              14              17.0              19.0              2960         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2829           132             9               3              14.0              16.0              1685         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2830           132             9               2              10.0              12.0              1880         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2848           132            13               4              28.0              30.0              2756         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2847           132            13              12              20.0              22.0              2917         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2856           132            14               7              21.0              23.0              2675         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2855           132            14              10              19.0              21.0              2933         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2864           132            17               4              16.0              18.0              2473         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2862           132            17              21              10.0              12.0              2647         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2881           132            25               2              22.0              24.0              2536         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2879           132            25              15              12.0              14.0              3538         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2904           132            33               4              25.0              27.0              2703         6.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2905           132            33               3              11.0              13.0              3705         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2923           132            38               5               7.0               9.0              1408         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2922           132            38               5               5.0               7.0              1437         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2925           132            39               5              10.0              12.0              1539         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2924           132            39               9               8.0              10.0              1587         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2929           132            40               2              24.0              26.0              2197         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2926           132            40               7              14.0              16.0              3674         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2941           132            43               3              20.0              22.0              2798         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2940           132            43               8              16.0              18.0              3174         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2942           132            45               8              18.0              20.0              2687         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2944           132            45               2              16.0              18.0              5946         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2963           132            50               3              21.0              23.0              2822         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2961           132            50              36              17.0              19.0              3294         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2973           132            52               4              26.0              28.0              2642         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
2974           132            52               2              14.0              16.0              3309         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3002           132            64               4              13.0              15.0              2262         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3001           132            64               6              11.0              13.0              2481         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3005           132            65               3              16.0              18.0              2694         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3004           132            65               3              12.0              14.0              3312         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3009           132            66               3              19.0              21.0              2839         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3008           132            66               7              17.0              19.0              2940         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3054           132            79               2              20.0              22.0              2798         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3053           132            79              24              16.0              18.0              2884         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3057           132            80               3              13.0              15.0              2163         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3056           132            80               3              11.0              13.0              3070         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3075           132            87               4              28.0              30.0              2756         5.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3076           132            87               2              16.0              18.0              4668         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3093           132            91               6              12.0              14.0              2053         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3094           132            91               5              10.0              12.0              2378         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3110           132            97               9              17.0              19.0              2637         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3111           132            97               7              11.0              13.0              3166         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3116           132            98               2              11.0              13.0              1670         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3115           132            98               2               9.0              11.0              2430         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3151           132           112               4              18.0              20.0              2302         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3149           132           112              26              14.0              16.0              2357         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3164           132           114               8              19.0              21.0              2963         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3163           132           114              14              17.0              19.0              3030         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3185           132           125               5              28.0              30.0              2773         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3183           132           125              24              18.0              20.0              3475         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3197           132           129              16              12.0              14.0              2007         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3198           132           129               7              10.0              12.0              2450         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3234           132           133               2              27.0              29.0              2489         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3232           132           133               6              17.0              19.0              3136         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3263           132           141              22              20.0              22.0              2494         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3262           132           141              30              16.0              18.0              2858         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3269           132           143              23              18.0              20.0              3113         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3272           132           143               6              16.0              18.0              3341         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3276           132           144               9              19.0              21.0              3000         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3275           132           144              28              17.0              19.0              3056         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3317           132           155              11              13.0              15.0              2100         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3318           132           155               3              11.0              13.0              2246         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3325           132           158               2              22.0              24.0              2910         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3323           132           158              28              18.0              20.0              3268         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3337           132           160               3              12.0              14.0              1878         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3335           132           160               3               8.0              10.0              1927         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3342           132           162             133              16.0              18.0              2580         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3344           132           162               3              14.0              16.0              2637         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3353           132           164              55              15.0              17.0              2433         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3355           132           164               3              11.0              13.0              2871         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3386           132           181              12              24.0              26.0              2744         5.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3385           132           181              39              12.0              14.0              3224         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3394           132           182               2              17.0              19.0              2257         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3393           132           182               3              15.0              17.0              3133         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3409           132           189               3              13.0              15.0              2719         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3408           132           189               9              11.0              13.0              3002         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3416           132           191               2              10.0              12.0              1342         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3415           132           191               3               6.0               8.0              1480         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3438           132           201               2              15.0              17.0              1640         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3437           132           201               8              11.0              13.0              2111         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3444           132           205              13               5.0               7.0              1441         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3445           132           205               5               3.0               5.0              1491         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3448           132           209               7              19.0              21.0              2437         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3450           132           209               3              17.0              19.0              3426         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3453           132           211              40              18.0              20.0              3093         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3455           132           211               5              16.0              18.0              3511         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3491           132           224               2              19.0              21.0              2533         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3490           132           224              18              17.0              19.0              2907         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3584           132           249               3              20.0              22.0              2857         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3585           132           249               2              16.0              18.0              3142         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3590           132           252               3              15.0              17.0              1669         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3588           132           252               4              11.0              13.0              2007         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3609           132           257               3              26.0              28.0              2560         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3610           132           257               2              12.0              14.0              4018         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3618           132           258               7               7.0               9.0              1332         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3617           132           258               7               5.0               7.0              1419         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3626           132           260               2              15.0              17.0              2360         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3625           132           260               5              13.0              15.0              2405         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3627           132           261              41              21.0              23.0              3170         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3630           132           261               3              15.0              17.0              4686         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3652           137            25               2               6.0               8.0              1144         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3651           137            25               2               4.0               6.0              1474         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3670           137            65               2               5.0               7.0               881         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3669           137            65               2               3.0               5.0              1228         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3739           137           211               3               3.0               5.0               829         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3738           137           211              12               1.0               3.0               884         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3746           137           231               2               6.0               8.0              1032         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3745           137           231               6               2.0               4.0              1113         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3754           137           236               2               4.0               6.0               802         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3753           137           236              22               2.0               4.0              1194         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3781           138             4               2              13.0              15.0              1471         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3779           138             4               4               9.0              11.0              1513         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3787           138            10               3              10.0              12.0              2053         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3786           138            10               8               8.0              10.0              2333         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3789           138            13               9              13.0              15.0              2214         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3791           138            13               2              11.0              13.0              2608         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3797           138            16               3               8.0              10.0              2114         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3798           138            16               2               6.0               8.0              2168         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3801           138            17               4               9.0              11.0              1726         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3800           138            17               5               7.0               9.0              2544         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3816           138            28               2               8.0              10.0              1473         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3815           138            28               7               6.0               8.0              1569         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3860           138            56               4               4.0               6.0              1125         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3861           138            56               2               2.0               4.0              1234         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3865           138            61               4              13.0              15.0              2256         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3863           138            61              16               9.0              11.0              2334         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3916           138            87              13              12.0              14.0              1856         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3917           138            87               8              10.0              12.0              2005         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3919           138            88               6              14.0              16.0              1988         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3918           138            88               7              12.0              14.0              2302         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3922           138            89               3              15.0              17.0              2353         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3920           138            89               3              11.0              13.0              2931         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3924           138            90               8              10.0              12.0              1737         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3923           138            90              35               8.0              10.0              1774         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3970           138           125               3              16.0              18.0              2199         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
3968           138           125              11              10.0              12.0              2256         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4002           138           140              21               9.0              11.0              1256         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4001           138           140              26               7.0               9.0              1318         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4006           138           142              58               9.0              11.0              1868         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4008           138           142               3               7.0               9.0              2289         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4010           138           143              30              10.0              12.0              1976         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4011           138           143               4               8.0              10.0              2040         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4016           138           145              23               6.0               8.0              1159         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4017           138           145               3               4.0               6.0              1643         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4020           138           146               6               5.0               7.0              1148         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4019           138           146               9               3.0               5.0              1196         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4031           138           157               4               6.0               8.0              1073         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4032           138           157               3               4.0               6.0              1226         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4041           138           161              19               7.0               9.0              1694         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4043           138           161               2               5.0               7.0              2317         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4049           138           162              70               8.0              10.0              1368         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4051           138           162               3               6.0               8.0              1421         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4054           138           163              29               8.0              10.0              1988         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4055           138           163               4               6.0               8.0              2295         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4091           138           181              14              12.0              14.0              2319         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4090           138           181              25              10.0              12.0              2416         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4096           138           186               7              10.0              12.0              1886         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4095           138           186              34               8.0              10.0              1916         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4114           138           197               2               9.0              11.0              2122         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4113           138           197               2               7.0               9.0              2286         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4132           138           209               3              12.0              14.0              1892         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4130           138           209               8              10.0              12.0              1975         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4137           138           211               2              12.0              14.0              1645         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4135           138           211              15              10.0              12.0              1930         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4159           138           225               2              11.0              13.0              1785         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4157           138           225               9               7.0               9.0              2180         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4166           138           229              57               9.0              11.0              1384         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4168           138           229               4               5.0               7.0              1717         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4177           138           231               4              15.0              17.0              1844         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4174           138           231              14               9.0              11.0              2416         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4195           138           236              14               6.0               8.0              1090         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4196           138           236               2               4.0               6.0              1544         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4197           138           237              67               8.0              10.0              1561         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4199           138           237               4               6.0               8.0              1669         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4212           138           244              14               9.0              11.0              1408         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4213           138           244               6               7.0               9.0              1660         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4235           138           256               4               9.0              11.0              1376         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4234           138           256              19               7.0               9.0              1422         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4236           138           257               6              13.0              15.0              2493         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4237           138           257               2              11.0              13.0              4492         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4248           138           261               9              15.0              17.0              1599         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4249           138           261               6              11.0              13.0              2742         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4274           140            42               2               5.0               7.0              1384         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4273           140            42               7               3.0               5.0              1443         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4318           140           132               4              19.0              21.0              3556         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4317           140           132               7              17.0              19.0              4460         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4320           140           137               4               3.0               5.0               644         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4319           140           137              30               1.0               3.0               681         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4341           140           162              33               2.0               4.0               679         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4340           140           162             142               0.0               2.0               682         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4369           140           223               3               6.0               8.0              1563         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4368           140           223               6               4.0               6.0              1584         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4378           140           231              10               7.0               9.0              1146         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4379           140           231               7               5.0               7.0              1698         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4400           140           249               3               5.0               7.0              1197         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4399           140           249              17               3.0               5.0              1365         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4431           141            48               2               3.0               5.0              1054         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4430           141            48              32               1.0               3.0              1100         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4461           141           113               3               4.0               6.0              1230         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4460           141           113              12               2.0               4.0              1314         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4470           141           132               2              17.0              19.0              2875         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4469           141           132               3              13.0              15.0              3717         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4488           141           144               3               5.0               7.0              1098         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4487           141           144               4               3.0               5.0              1368         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4519           141           181               2              10.0              12.0              1822         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4518           141           181               3               8.0              10.0              2955         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4539           141           231               3               6.0               8.0              1223         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4538           141           231               6               4.0               6.0              1721         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4561           141           246               4               4.0               6.0              1358         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4560           141           246              11               2.0               4.0              1597         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4615           142           107               2               4.0               6.0              1238         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4614           142           107              33               2.0               4.0              1287         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4622           142           116               2               5.0               7.0              1062         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4621           142           116               9               3.0               5.0              1185         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4629           142           132               5              21.0              23.0              3796         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4627           142           132               7              15.0              17.0              3980         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4633           142           138               9              10.0              12.0              2562         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4634           142           138               4               8.0              10.0              2884         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4644           142           144               2               6.0               8.0              1722         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4643           142           144               6               4.0               6.0              1780         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4667           142           181               2              10.0              12.0              2446         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4666           142           181               2               8.0              10.0              2568         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4751           143           132               2              19.0              21.0              3226         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4750           143           132               4              17.0              19.0              3541         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4776           143           152               2               4.0               6.0               694         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4775           143           152               3               2.0               4.0               815         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4784           143           166               6               3.0               5.0               623         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4783           143           166              18               1.0               3.0               763         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4837           144            48               3               4.0               6.0              1414         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4836           144            48              25               2.0               4.0              1472         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4874           144           140               2               5.0               7.0              1248         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4873           144           140               4               3.0               5.0              1671         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4876           144           141               2               5.0               7.0              1370         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4875           144           141               5               3.0               5.0              1737         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4906           144           230               7               4.0               6.0              1468         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4905           144           230              67               2.0               4.0              1489         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4950           144           262               2               6.0               8.0              1196         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
4949           144           262               2               4.0               6.0              1903         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5015           148             1               2              16.0              18.0              2639         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5014           148             1               2              12.0              14.0              3767         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5020           148            13               2               3.0               5.0               796         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5019           148            13               6               1.0               3.0               995         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5067           148           132               2              15.0              17.0              3441         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5066           148           132               4              13.0              15.0              4142         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5137           148           263               2               6.0               8.0              1198         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5136           148           263               2               4.0               6.0              1289         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5149           151            48               3               4.0               6.0               857         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5148           151            48              22               2.0               4.0              1072         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5214           151           244               7               4.0               6.0              1006         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5215           151           244               6               2.0               4.0              1092         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5303           158           132               2              20.0              22.0              3460         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5302           158           132               3              18.0              20.0              3536         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5376           161            13               5               7.0               9.0              1441         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5375           161            13              15               3.0               5.0              1470         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5403           161            49               3               8.0              10.0              2472         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5402           161            49               3               6.0               8.0              2722         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5429           161            87              41               5.0               7.0              1432         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5430           161            87               7               3.0               5.0              1757         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5433           161            88               9               6.0               8.0              1331         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5432           161            88              12               4.0               6.0              1343         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5465           161           132               5              18.0              20.0              3198         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5464           161           132               9              14.0              16.0              3770         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5472           161           138              30               8.0              10.0              2308         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5473           161           138               6               6.0               8.0              2699         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5492           161           151               4               4.0               6.0              1085         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5491           161           151              26               2.0               4.0              1227         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5515           161           181               2              10.0              12.0              2311         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5513           161           181               3               6.0               8.0              2711         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5528           161           209               9               5.0               7.0              1262         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5529           161           209               8               3.0               5.0              1661         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5568           161           255               5               6.0               8.0              1608         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5569           161           255               4               4.0               6.0              1615         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5573           161           261              13               5.0               7.0              1504         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5574           161           261               5               3.0               5.0              1672         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5606           162            42               3               5.0               7.0              1497         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5605           162            42               5               3.0               5.0              2084         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5628           162            74               2               5.0               7.0              1142         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5627           162            74               6               3.0               5.0              1253         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5650           162            95               2               8.0              10.0              1418         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5649           162            95               2               6.0               8.0              2132         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5675           162           116               4               7.0               9.0              1714         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5674           162           116               8               5.0               7.0              2241         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5682           162           129               2               6.0               8.0              1628         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5681           162           129               4               4.0               6.0              1643         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5683           162           132              36              16.0              18.0              3478         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5685           162           132               2              12.0              14.0              5424         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5691           162           138              11              11.0              13.0              1916         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5690           162           138              12               7.0               9.0              2291         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5782           162           238               3               4.0               6.0              1161         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5781           162           238              87               2.0               4.0              1192         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5787           162           244               2               8.0              10.0              1766         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5786           162           244               3               6.0               8.0              2907         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5821           163            13               3               6.0               8.0              1450         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5820           163            13              14               4.0               6.0              1510         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5858           163            79               3               4.0               6.0              1183         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5857           163            79              40               2.0               4.0              1190         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5860           163            87              10               6.0               8.0              1517         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5861           163            87               8               4.0               6.0              1672         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5885           163           132               8              18.0              20.0              3260         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5884           163           132              14              14.0              16.0              3956         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5887           163           138              24               9.0              11.0              2221         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5889           163           138               8               7.0               9.0              2685         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5898           163           144               2               5.0               7.0              1443         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5897           163           144              18               3.0               5.0              1542         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5923           163           181               3               8.0              10.0              2507         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5924           163           181               2               6.0               8.0              2996         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5933           163           209               4               6.0               8.0              1368         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5932           163           209               4               4.0               6.0              1872         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5946           163           231               2               7.0               9.0              1659         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5944           163           231              54               3.0               5.0              1666         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5966           163           249               2               4.0               6.0              1040         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5965           163           249              74               2.0               4.0              1153         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5983           164             1               2              18.0              20.0              2449         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
5982           164             1               2              14.0              16.0              2763         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6014           164            66               2               6.0               8.0              1282         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6013           164            66               2               4.0               6.0              1848         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6027           164            87              17               4.0               6.0              1156         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6028           164            87               2               2.0               4.0              1413         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6050           164           132              13              17.0              19.0              3333         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6051           164           132               4              13.0              15.0              3434         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6057           164           138               3              10.0              12.0              2103         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6056           164           138              28               8.0              10.0              2345         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6072           164           151               3               5.0               7.0              1347         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6071           164           151               7               3.0               5.0              1600         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6095           164           209              11               4.0               6.0              1230         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6096           164           209               3               2.0               4.0              1377         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6146           164           261               8               4.0               6.0              1207         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6147           164           261               6               2.0               4.0              1355         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6187           166           132               2              20.0              22.0              3912         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6186           166           132               5              18.0              20.0              3930         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6201           166           161               3               5.0               7.0              1312         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6200           166           161               4               3.0               5.0              1508         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6253           170            13               2               7.0               9.0              1112         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6252           170            13               5               3.0               5.0              1363         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6275           170            49               3               7.0               9.0              1543         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6276           170            49               2               5.0               7.0              2042         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6297           170            87               9               5.0               7.0              1092         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6296           170            87              16               3.0               5.0              1120         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6317           170           112               2               5.0               7.0              1085         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6316           170           112               3               3.0               5.0              1158         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6330           170           129               2               7.0               9.0              1198         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6329           170           129               2               5.0               7.0              1654         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6331           170           132              41              15.0              17.0              3214         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6332           170           132               4              13.0              15.0              4087         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6381           170           181               3               9.0              11.0              2147         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6382           170           181               2               5.0               7.0              2203         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6413           170           231               3               6.0               8.0              1048         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6411           170           231              42               2.0               4.0              1188         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6424           170           238              17               4.0               6.0              1340         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6423           170           238              26               2.0               4.0              1374         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6434           170           255               3               6.0               8.0              1312         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6433           170           255               3               4.0               6.0              1491         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6439           170           261               6               5.0               7.0              1261         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6440           170           261               3               3.0               5.0              1702         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6466           186             1               3              19.0              21.0              2472         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6465           186             1               4              15.0              17.0              3472         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6493           186            42               4               7.0               9.0              2161         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6492           186            42               9               5.0               7.0              2446         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6511           186            65               2               6.0               8.0              1898         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6510           186            65               3               4.0               6.0              2236         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6528           186            88               4               5.0               7.0              1293         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6527           186            88               7               3.0               5.0              1387         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6553           186           132              12              17.0              19.0              3546         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6552           186           132              15              15.0              17.0              4072         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6557           186           138               9              10.0              12.0              2427         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6558           186           138               4               8.0              10.0              2839         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6591           186           181               2              10.0              12.0              2072         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6589           186           181               5               6.0               8.0              2310         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6653           186           261               2               5.0               7.0              1380         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6652           186           261              19               3.0               5.0              1433         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6715           209           114               2               3.0               5.0               834         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6714           209           114               2               1.0               3.0              1109         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6759           209           232               5               2.0               4.0               521         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6758           209           232               5               0.0               2.0               545         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6784           211            48               4               4.0               6.0              1224         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6783           211            48              19               2.0               4.0              1240         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6818           211           141               3               5.0               7.0              1593         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
6817           211           141              10               3.0               5.0              1666         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7012           229            68               9               3.0               5.0              1118         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7011           229            68              25               1.0               3.0              1174         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7037           229           132               8              16.0              18.0              3196         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7038           229           132               7              14.0              16.0              3233         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7041           229           138              15               9.0              11.0              1748         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7042           229           138               4               7.0               9.0              2142         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7104           229           231               5               7.0               9.0              1329         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7103           229           231               8               3.0               5.0              1424         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7127           229           261               2               7.0               9.0              1057         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7126           229           261               2               5.0               7.0              1250         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7130           230             1              17              17.0              19.0              2766         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7131           230             1               4              15.0              17.0              2993         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7169           230            66               5               7.0               9.0              1831         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7170           230            66               2               5.0               7.0              2455         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7185           230            87               9               6.0               8.0              1517         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7184           230            87              13               4.0               6.0              1602         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7187           230            88               2               6.0               8.0              1542         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7186           230            88               7               4.0               6.0              1827         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7194           230            97               3               8.0              10.0              2219         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7193           230            97               4               6.0               8.0              3072         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7210           230           132              72              17.0              19.0              3853         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7213           230           132               2              13.0              15.0              4778         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7221           230           138              51               9.0              11.0              2627         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7223           230           138               6               7.0               9.0              3114         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7258           230           181               5               8.0              10.0              2610         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7259           230           181               2               6.0               8.0              3220         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7319           230           261               8               5.0               7.0              1501         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7320           230           261               7               3.0               5.0              1668         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7329           231             4               5               3.0               5.0               774         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7328           231             4               6               1.0               3.0               944         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7349           231            43               4               5.0               7.0              1632         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7348           231            43               5               3.0               5.0              1770         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7398           231           132               2              19.0              21.0              3117         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7396           231           132               3              15.0              17.0              4794         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7406           231           137               7               4.0               6.0              1017         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7407           231           137               6               2.0               4.0              1120         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7416           231           141               3               8.0              10.0              1202         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7415           231           141               3               4.0               6.0              1750         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7431           231           161               3               6.0               8.0              1234         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7429           231           161              37               2.0               4.0              1444         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7434           231           162               5               7.0               9.0              1321         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7433           231           162              11               3.0               5.0              1550         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7466           231           229               8               6.0               8.0              1055         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7465           231           229              12               4.0               6.0              1209         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7490           231           236              10               7.0               9.0              1883         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7489           231           236              10               5.0               7.0              2022         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7493           231           237               8               8.0              10.0              1497         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7492           231           237              13               4.0               6.0              1825         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7515           231           263               5               7.0               9.0              1459         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7516           231           263               3               5.0               7.0              1843         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7575           233            45               2               4.0               6.0               842         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7574           233            45               2               2.0               4.0               900         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7618           233           132              28              15.0              17.0              3451         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7619           233           132               4              13.0              15.0              3716         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7623           233           138              25               9.0              11.0              1738         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7624           233           138               8               7.0               9.0              2145         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7626           233           140              10               2.0               4.0               709         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7625           233           140              73               0.0               2.0               737         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7670           233           231               2               6.0               8.0              1150         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7668           233           231               6               2.0               4.0              1170         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7696           233           263               4               3.0               5.0               789         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7695           233           263              44               1.0               3.0               795         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7708           234            25               3               5.0               7.0              1730         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7707           234            25               3               3.0               5.0              2060         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7712           234            40               2               6.0               8.0              1841         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7711           234            40               2               4.0               6.0              2040         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7714           234            41               2               6.0               8.0              1600         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7713           234            41               6               4.0               6.0              1836         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7730           234            65               2               4.0               6.0              1492         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7729           234            65               3               2.0               4.0              1865         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7737           234            75               5               4.0               6.0              1258         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7738           234            75               3               2.0               4.0              1403         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7744           234            87              16               4.0               6.0              1104         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7745           234            87              15               2.0               4.0              1120         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7746           234            88               6               4.0               6.0              1139         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7747           234            88               4               2.0               4.0              1245         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7766           234           132              14              16.0              18.0              3216         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7767           234           132               2              14.0              16.0              5435         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7803           234           181               2               7.0               9.0              1774         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7802           234           181               5               5.0               7.0              2118         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7810           234           209               2               4.0               6.0               916         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7809           234           209              12               2.0               4.0              1095         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7837           234           238               5               5.0               7.0              1427         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7836           234           238              35               3.0               5.0              1654         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7860           234           262               2               5.0               7.0              1137         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7859           234           262              27               3.0               5.0              1378         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7865           236             1               2              19.0              21.0              4037         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7864           236             1               2              17.0              19.0              4330         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7916           236           107              10               4.0               6.0              1179         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7915           236           107              39               2.0               4.0              1278         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7921           236           114               3               6.0               8.0              1487         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7920           236           114              12               4.0               6.0              1810         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7935           236           137               5               4.0               6.0              1021         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7934           236           137              13               2.0               4.0              1165         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7949           236           144               6               6.0               8.0              1550         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7948           236           144               9               4.0               6.0              1739         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7961           236           158               5               6.0               8.0              1753         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7960           236           158              15               4.0               6.0              1755         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7991           236           211               5               6.0               8.0              1764         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
7990           236           211              10               4.0               6.0              1817         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8005           236           231               2              10.0              12.0              1529         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8004           236           231               2               4.0               6.0              2472         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8031           236           246               5               5.0               7.0              1470         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8030           236           246              18               3.0               5.0              1471         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8051           237            13               8               7.0               9.0              1685         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8052           237            13               4               5.0               7.0              1886         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8055           237            25               3               8.0              10.0              1962         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8056           237            25               2               6.0               8.0              2405         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8087           237            87               8               6.0               8.0              1328         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8088           237            87               4               4.0               6.0              1564         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8123           237           132               6              19.0              21.0              3470         4.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8125           237           132               4              13.0              15.0              4186         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8131           237           138              10               8.0              10.0              1688         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8133           237           138               6               6.0               8.0              2133         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8149           237           148              10               5.0               7.0              1482         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8148           237           148              10               3.0               5.0              1522         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8155           237           158               2               5.0               7.0              1582         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8154           237           158              33               3.0               5.0              1597         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8177           237           181               2               8.0              10.0              1942         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8176           237           181               2               6.0               8.0              2342         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8200           237           231              15               7.0               9.0              1721         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8199           237           231              16               3.0               5.0              1764         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8241           237           256               2               7.0               9.0              1751         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8240           237           256               5               5.0               7.0              1784         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8249           238             1               3              19.0              21.0              3510         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8250           238             1               2              17.0              19.0              3908         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8278           238            79               5               6.0               8.0              1620         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8279           238            79               2               4.0               6.0              1887         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8301           238           132               2              21.0              23.0              3638         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8300           238           132               3              17.0              19.0              4074         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8347           238           229               3               4.0               6.0              1200         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8346           238           229              21               2.0               4.0              1252         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8351           238           231               4               7.0               9.0              1806         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8350           238           231               5               5.0               7.0              1919         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8369           238           246               3               4.0               6.0               873         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8368           238           246              12               2.0               4.0              1106         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8376           239             1               2              20.0              22.0              3204         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8375           239             1               4              18.0              20.0              4592         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8416           239           107               3               5.0               7.0              1344         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8415           239           107              16               3.0               5.0              1492         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8421           239           114               4               5.0               7.0              1779         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8420           239           114               9               3.0               5.0              1785         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8423           239           116               2               4.0               6.0              1028         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8422           239           116              20               2.0               4.0              1034         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8428           239           132               6              18.0              20.0              3884         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8429           239           132               2              16.0              18.0              4642         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8453           239           158               2               5.0               7.0              1377         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8452           239           158              13               3.0               5.0              1439         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8464           239           181               3              10.0              12.0              2637         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8465           239           181               2               8.0              10.0              3072         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8536           244           243               2               2.0               4.0               417         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8535           244           243               2               0.0               2.0               587         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8560           246            41               2               6.0               8.0              1276         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8559           246            41               7               4.0               6.0              1481         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8682           246           232               2               5.0               7.0              1340         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8681           246           232               8               3.0               5.0              1388         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8691           246           238              37               3.0               5.0               960         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8692           246           238              12               1.0               3.0               995         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8764           249           132               3              17.0              19.0              3729         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8765           249           132               2              15.0              17.0              6734         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8830           249           239               4               5.0               7.0              1468         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8829           249           239              12               3.0               5.0              1476         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8891           261             1               2              15.0              17.0              1774         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8890           261             1               6              13.0              15.0              2402         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8923           261            79               6               3.0               5.0               788         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8922           261            79              10               1.0               3.0              1099         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8934           261           107               3               4.0               6.0               988         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8933           261           107               5               2.0               4.0              1081         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8951           261           137               2               5.0               7.0               975         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8950           261           137               3               3.0               5.0              1017         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8952           261           138               6              13.0              15.0              2749         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8953           261           138               3              11.0              13.0              3317         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8973           261           161               6               7.0               9.0              1483         3.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
8972           261           161               6               3.0               5.0              1632         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9009           261           233               3               6.0               8.0              1078         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9008           261           233               8               4.0               6.0              1147         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9015           261           237               6               6.0               8.0              1632         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9016           261           237               3               4.0               6.0              2230         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9036           261           263               2               8.0              10.0              1096         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9035           261           263               2               6.0               8.0              1264         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9077           262           132               5              19.0              21.0              2863         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9076           262           132               7              17.0              19.0              4816         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9119           262           233               3               3.0               5.0               459         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9118           262           233              23               1.0               3.0               565         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9128           262           246               2              10.0              12.0              1306         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9127           262           246               4               4.0               6.0              1638         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9162           263            68               3               5.0               7.0              1466         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9161           263            68              12               3.0               5.0              1576         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9178           263           113               6               5.0               7.0              1408         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9177           263           113               8               3.0               5.0              1496         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9191           263           138               3               9.0              11.0              1409         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9190           263           138              15               7.0               9.0              1683         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9245           263           231               3               8.0              10.0              1571         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9244           263           231               3               6.0               8.0              1657         1.0
better route:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9249           263           233               5               3.0               5.0               644         2.0

congested short distance:
      PULocationID  DOLocationID  trip_occurance  dist_lower_bound  dist_upper_bound  average_trip_dur  Rankfilter
9248           263           233              27               1.0               3.0               778         1.0
In [ ]:
 
In [ ]:
 
In [ ]: